home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / misc / isode.pat / isode.patch
Text File  |  1994-01-20  |  278KB  |  5,618 lines

  1. This patch is against ISODE 8.0.1. If you don't have ISODE 8.0 or the
  2. patch 1 for it they can be found on src.doc.ic.ac.uk:packages/isode
  3. among other archives.
  4.  
  5.   The major part of this adds support for building a Linux DLL library
  6. to the makefiles. Do ./make first. This will build libraries, pepsy,
  7. pepy etc. as normal. Then do ./make linux-libs to build the shared
  8. library. It isn't clean, it isn't neat. You will probably have to do some
  9. fudging by hand. A shared library is worth it though unless you have
  10. gigabytes of free disk space to waste :-).
  11.  
  12.   There are also changes to add termios support to various places, POSIX
  13. changes etc. However it is mostly a case of making some good choices in
  14. the config.h and config.make files, see config/linux.*. Async mode is
  15. done with the isore kludge. I looked at putting SIGIO in the Linux kernel
  16. and decided this was not a trivial job. PP requires async mode so isore
  17. is the only choice.
  18.  
  19.   These patches get most things working to a reasonable-ish degree I think.
  20. Certainly quipu, dish, pod seem happy, the problem is in figuring out how
  21. to set them up if you don't have much experience. The ISODE documentation
  22. is not supplied with ISODE 8.0 - you need the documentation from one of
  23. the earlier distributions. The documentation comes in the form of several
  24. big, thick manuals in TeX format. These are development oriented rather
  25. than end-user oriented though :-).
  26.  
  27.   PP still has problems. In particular qmgr bombs with a sig 11 apparently
  28. due to heap corruption. Unfortunately this *only* happens with the libc
  29. malloc and not my debugging malloc which detects no invalid pointers,
  30. over/underruns, chain corruption etc. Given the rate libc malloc keeps
  31. moving at the moment this problem isn't exactly amenable to solution
  32. right now...
  33.  
  34.   You want a fair amount of memory to run ISODE. I have 16MB. 8MB is
  35. swapsville. For ISODE development I wouldn't recommend less than 16MB.
  36. I wish I had more :-(.
  37.  
  38.   This is *ALPHA*. It might change drastically for no apparent reason.
  39. It hasn't for quite a while but then I haven't been working on it for
  40. quite a while :-).
  41.  
  42.   I'll try and put some packages of binaries together at some stage too
  43. perhaps...
  44.  
  45.  
  46.   Mike Jagdis <jaggy@purplet.demon.co.uk>
  47.  
  48.  
  49.  
  50. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/Makefile isode-8.0/Makefile
  51. --- old/isode-8.0/Makefile    Tue Jun 16 13:05:02 1992
  52. +++ isode-8.0/Makefile    Fri Aug 27 14:52:35 1993
  53. @@ -31,7 +31,12 @@
  54.  ##################################################################
  55.  
  56.  LIBDIRS    =    h compat dirent tsap ssap psap pepsy pepy psap2 \
  57. -        acsap rosap rtsap ronot rosy 
  58. +        acsap rosap rtsap ronot rosy
  59. +# If you don't want lpp use psap2 instead of psap2-lpp
  60. +LINUXISODE=    rosy ronot rosap rtsap acsap psap2 pepy pepsy psap \
  61. +        ssap tsap dirent compat support
  62. +LINUXDSAP=    dsap
  63. +LINUXFTAM=    ftam
  64.  DIRS    =    $(LIBDIRS) support imisc
  65.  OTHERS    =    dsap ftam ftam2 ftam-ftp ftp-ftam others psap2-lpp quipu \
  66.          snmp vt
  67. @@ -41,6 +46,26 @@
  68.              do (echo "cd $$i; $(MAKE) all"; \
  69.                    cd $$i; $(MAKE) all); \
  70.              done
  71. +
  72. +linux-libs:
  73. +        @for i in $(LINUXISODE); \
  74. +            do (echo "cd $$i; $(MAKE) linux-lib"; \
  75. +                cd $$i; \
  76. +                JUMP_DIR=../jump/ JUMP_LIB=libisode \
  77. +                JUMP_OPT=-B/usr/dll/jump/ $(MAKE) linux-lib); \
  78. +            done
  79. +        @for i in $(LINUXDSAP); \
  80. +            do (echo "cd $$i; $(MAKE) linux-lib"; \
  81. +                cd $$i; \
  82. +                JUMP_DIR=../jump/ JUMP_LIB=libdsap \
  83. +                JUMP_OPT=-B/usr/dll/jump/ $(MAKE) linux-lib); \
  84. +            done
  85. +        @for i in $(LINUXFTAM); \
  86. +            do (echo "cd $$i; $(MAKE) linux-lib"; \
  87. +                cd $$i; \
  88. +                JUMP_DIR=../jump/ JUMP_LIB=libftam \
  89. +                JUMP_OPT=-B/usr/dll/jump/ $(MAKE) linux-lib); \
  90. +            done
  91.  
  92.  inst-all:    make-dirs
  93.          @for i in $(DIRS); \
  94. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/acsap/Makefile isode-8.0/acsap/Makefile
  95. --- old/isode-8.0/acsap/Makefile    Tue Jun 16 13:05:59 1992
  96. +++ isode-8.0/acsap/Makefile    Wed Aug 25 14:27:10 1993
  97. @@ -84,6 +84,20 @@
  98.  
  99.  inst-libacsap:    $(LIBDIR)libacsap.a $(LINTDIR)llib-lacsap
  100.  
  101. +zap-acsap:
  102. +        -rm -f $(OFILES) libacsap.a \
  103. +            ACS_tables.o OACS_tables.o DSE_tables.o DASE_tables.o \
  104. +            acsapvrsn.o
  105. +
  106. +linux-lib:    zap-acsap ../jump/libacsap.a
  107. +
  108. +../jump/libacsap.a:    libacsap
  109. +        -rm -f $@
  110. +        cp libacsap.a $@
  111. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  112. +        -@ls -gls $@
  113. +        -@echo ""
  114. +
  115.  $(LIBDIR)libacsap.a:    libacsap.a
  116.          -rm -f $@
  117.          cp libacsap.a $@
  118. @@ -234,6 +248,7 @@
  119.          -@echo ""
  120.  
  121.  dased:        xdased
  122. +        :
  123.  
  124.  xdased:        dased.o DASE_tables.o $(TOPDIR)libdsap.a $(TOPDIR)libisode.a
  125.          $(LDCC) $(LDFLAGS) -o $@ dased.o DASE_tables.o \
  126. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/compat/Makefile isode-8.0/compat/Makefile
  127. --- old/isode-8.0/compat/Makefile    Tue Jun 16 13:07:00 1992
  128. +++ isode-8.0/compat/Makefile    Tue Aug 24 11:53:55 1993
  129. @@ -79,6 +79,18 @@
  130.  
  131.  inst-libcompat:    $(LIBDIR)libicompat.a $(LINTDIR)llib-licompat
  132.  
  133. +zap-compat:
  134. +        -rm -f $(OFILES) libcompat.a compatvrsn.o
  135. +
  136. +linux-lib:    zap-compat ../jump/libcompat.a
  137. +
  138. +../jump/libcompat.a:    libcompat.a
  139. +        -rm -f $@
  140. +        cp libcompat.a $@
  141. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  142. +        -@ls -gls $@
  143. +        -@echo ""
  144. +
  145.  $(LIBDIR)libicompat.a:    libcompat.a
  146.          -rm -f $@
  147.          cp libcompat.a $@
  148. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/compat/asprintf.c isode-8.0/compat/asprintf.c
  149. --- old/isode-8.0/compat/asprintf.c    Tue Jun 16 13:07:00 1992
  150. +++ isode-8.0/compat/asprintf.c    Wed May 26 17:10:05 1993
  151. @@ -27,8 +27,9 @@
  152.  
  153.  /* LINTLIBRARY */
  154.  
  155. -#include <stdio.h>
  156.  #include <varargs.h>
  157. +#define _STDARG_H
  158. +#include <stdio.h>
  159.  #include "general.h"
  160.  #include "manifest.h"
  161.  
  162. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/compat/general.c isode-8.0/compat/general.c
  163. --- old/isode-8.0/compat/general.c    Tue Jun 16 13:07:06 1992
  164. +++ isode-8.0/compat/general.c    Mon Aug 23 10:05:08 1993
  165. @@ -79,7 +79,7 @@
  166.  
  167.  /*     DUP2 */
  168.  
  169. -#ifndef    BSD42
  170. +#if !defined(BSD42) && !defined(__linux__)
  171.  #ifdef    SYS5
  172.  #include <fcntl.h>
  173.  #endif
  174. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/compat/getpassword.c isode-8.0/compat/getpassword.c
  175. --- old/isode-8.0/compat/getpassword.c    Tue Jun 16 13:07:06 1992
  176. +++ isode-8.0/compat/getpassword.c    Thu Aug 19 12:45:14 1993
  177. @@ -32,6 +32,9 @@
  178.  #include "general.h"
  179.  #include "manifest.h"
  180.  #include "sys.file.h"
  181. +#ifdef _POSIX_SOURCE
  182. +#include <termios.h>
  183. +#endif
  184.  
  185.  #ifdef    BSD44
  186.  char   *getpass ();
  187. @@ -51,7 +54,11 @@
  188.      register char  *bp,
  189.             *ep;
  190.  #if    !defined(SYS5) && !defined(XOS_2)
  191. +#if defined(_POSIX_SOURCE)
  192. +    struct termios  sg;
  193. +#else
  194.      struct sgttyb   sg;
  195. +#endif
  196.  #else
  197.      struct termio   sg;
  198.  #endif
  199. @@ -75,10 +82,17 @@
  200.      istat = signal (SIGINT, SIG_IGN);
  201.  
  202.  #if    !defined(SYS5) && !defined(XOS_2)
  203. +#if defined(_POSIX_SOURCE)
  204. +    tcgetattr (fileno (fp), &sg);
  205. +    flags = sg.c_lflag;
  206. +    sg.c_lflag &= ~ECHO;
  207. +    tcsetattr (fileno (fp), TCSADRAIN, &sg);
  208. +#else
  209.      (void) gtty (fileno (fp), &sg);
  210.      flags = sg.sg_flags;
  211.      sg.sg_flags &= ~ECHO;
  212.      (void) stty (fileno (fp), &sg);
  213. +#endif
  214.  #else
  215.      (void) ioctl (fileno (fp), TCGETA, (char *) &sg);
  216.      flags = sg.c_lflag;
  217. @@ -115,8 +129,13 @@
  218.  #endif
  219.  
  220.  #if    !defined(SYS5) && !defined(XOS_2)
  221. +#if defined(_POSIX_SOURCE)
  222. +    sg.c_lflag = flags;    
  223. +    tcsetattr (fileno (fp), TCSADRAIN, &sg);
  224. +#else
  225.      sg.sg_flags = flags;
  226.      (void) stty (fileno (fp), &sg);
  227. +#endif
  228.  #else
  229.      sg.c_lflag = flags;
  230.      (void) ioctl (fileno (fp), TCSETAW, (char *) &sg);
  231. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/compat/internet.c isode-8.0/compat/internet.c
  232. --- old/isode-8.0/compat/internet.c    Tue Jun 16 13:07:09 1992
  233. +++ isode-8.0/compat/internet.c    Tue Sep  7 11:49:18 1993
  234. @@ -178,7 +178,7 @@
  235.      }
  236.  
  237.  got_socket: ;
  238. -#if    !defined(BSD43) && !defined(SVR4)
  239. +#if    !defined(BSD43) && !defined(SVR4) && !defined(__linux__)
  240.      if (setsockopt (sd, SOL_SOCKET, SO_KEEPALIVE, NULLCP, 0) == NOTOK)
  241.      SLOG (compat_log, LLOG_EXCEPTIONS, "failed", ("set SO_KEEPALIVE"));
  242.      if (opt1 && setsockopt (sd, SOL_SOCKET, opt1, NULLCP, 0) == NOTOK)
  243. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/compat/logger.c isode-8.0/compat/logger.c
  244. --- old/isode-8.0/compat/logger.c    Tue Jun 16 13:07:16 1992
  245. +++ isode-8.0/compat/logger.c    Wed May 26 17:08:46 1993
  246. @@ -27,8 +27,9 @@
  247.  
  248.  /* LINTLIBRARY */
  249.  
  250. -#include <stdio.h>
  251.  #include <varargs.h>
  252. +#define _STDARG_H
  253. +#include <stdio.h>
  254.  #include "general.h"
  255.  #include "manifest.h"
  256.  #include "logger.h"
  257. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/compat/putenv.c isode-8.0/compat/putenv.c
  258. --- old/isode-8.0/compat/putenv.c    Tue Jun 16 13:07:19 1992
  259. +++ isode-8.0/compat/putenv.c    Thu Aug 19 12:58:10 1993
  260. @@ -31,6 +31,8 @@
  261.  #include "general.h"
  262.  #include "manifest.h"
  263.  
  264. +#ifndef _POSIX_SOURCE
  265. +
  266.  /*   */
  267.  
  268.  extern  char **environ;
  269. @@ -104,3 +106,5 @@
  270.  
  271.      return (*s1 == '\0' && *--s2 == '=');
  272.  }
  273. +
  274. +#endif /* _POSIX_SOURCE */
  275. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/compat/strdup.c isode-8.0/compat/strdup.c
  276. --- old/isode-8.0/compat/strdup.c    Tue Jun 16 13:07:33 1992
  277. +++ isode-8.0/compat/strdup.c    Mon Aug 23 10:14:50 1993
  278. @@ -33,7 +33,7 @@
  279.  #include "tailor.h"
  280.  
  281.  /*   */
  282. -#if !defined(SVR4) || defined(_AIX)
  283. +#if (!defined(SVR4) && !defined(__linux__)) || defined(_AIX)
  284.                        /* strdup in AIX does not seem to use QUIPUs malloc! */
  285.  
  286.  char   *strdup (str)
  287. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/config/linux.h isode-8.0/config/linux.h
  288. --- old/isode-8.0/config/linux.h    Thu Jan  1 01:00:00 1970
  289. +++ isode-8.0/config/linux.h    Fri Sep 10 16:00:21 1993
  290. @@ -0,0 +1,30 @@
  291. +#ifndef    _CONFIG_
  292. +#define    _CONFIG_
  293. +
  294. +#define WRITEV
  295. +#define SVR4_UCB        /* we have some of these bits too */
  296. +#define LINUX            /* more strictly Linux */
  297. +
  298. +#define BSDSIGS            /* BSD style signals work. */
  299. +
  300. +#undef    SIGPOLL            /* None of these actual work... */
  301. +#undef    SIGIO
  302. +#undef    SIGURG
  303. +#undef    SIGEMT
  304. +
  305. +#define BSDLIBC            /* We have the BSD insque/remque. */
  306. +#define SWAPLIB            /* Can swap between local and net byte order */
  307. +#define SHADOW_PW        /* use shadow password file */
  308. +#define VSPRINTF
  309. +#define TEMPNAM
  310. +
  311. +#define GETDENTS
  312. +#define NFS            /* NFS implies GETDENTS too I think. */
  313. +
  314. +#define    TCP            /* has TCP/IP (of course) */
  315. +#define    SOCKETS            /*   provided by sockets */
  316. +#define BIND
  317. +
  318. +#define RFINGER "/usr/bin/finger"
  319. +
  320. +#endif
  321. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/config/linux.make isode-8.0/config/linux.make
  322. --- old/isode-8.0/config/linux.make    Thu Jan  1 01:00:00 1970
  323. +++ isode-8.0/config/linux.make    Thu Aug 26 16:25:07 1993
  324. @@ -0,0 +1,86 @@
  325. +###############################################################################
  326. +#   Instructions to Make, for compilation of ISODE processes for 4.3BSD UNIX
  327. +###############################################################################
  328. +
  329. +###############################################################################
  330. +#
  331. +# $Header: /xtel/isode/isode/config/RCS/bsd43.make,v 9.0 1992/06/16 12:08:13 isode Rel $
  332. +#
  333. +#
  334. +# $Log: bsd43.make,v $
  335. +# Revision 9.0  1992/06/16  12:08:13  isode
  336. +# Release 8.0
  337. +#
  338. +#
  339. +###############################################################################
  340. +
  341. +###############################################################################
  342. +#
  343. +#                 NOTICE
  344. +#
  345. +#    Acquisition, use, and distribution of this module and related
  346. +#    materials are subject to the restrictions of a license agreement.
  347. +#    Consult the Preface in the User's Manual for the full terms of
  348. +#    this agreement.
  349. +#
  350. +###############################################################################
  351. +
  352. +
  353. +###############################################################################
  354. +# Options
  355. +###############################################################################
  356. +
  357. +OPTIONS    =    -I. -I$(TOPDIR)h $(PEPYPATH) $(KRBOPT)
  358. +
  359. +HDIR    =    $(TOPDIR)h/
  360. +UTILDIR    =    $(TOPDIR)util/
  361. +BINDIR    =    /usr/local/bin/
  362. +SBINDIR    =    /usr/etc/
  363. +ETCDIR    =    /usr/etc/
  364. +LOGDIR    =    /usr/tmp/
  365. +INCDIRM    =    /usr/include/isode
  366. +INCDIR    =    $(INCDIRM)/
  367. +PEPYDIRM=    $(INCDIR)pepy
  368. +PEPYDIR    =    $(PEPYDIRM)/
  369. +PEPSYDIRM=    $(INCDIR)pepsy
  370. +PEPSYDIR=    $(PEPSYDIRM)/
  371. +LIBDIR    =    /usr/lib/
  372. +LINTDIR    =    /usr/lib/lint/
  373. +
  374. +LIBISODE=    $(TOPDIR)libisode.a
  375. +LIBDSAP    =    $(TOPDIR)libdsap.a
  376. +
  377. +SYSTEM    =    -bsd42
  378. +MANDIR    =    /usr/man/
  379. +MANOPTS    =    -bsd42
  380. +
  381. +
  382. +###############################################################################
  383. +# Programs and Libraries
  384. +###############################################################################
  385. +
  386. +MAKE    =    ./make DESTDIR=$(DESTDIR) $(MFLAGS) -k
  387. +SHELL    =    /bin/sh
  388. +
  389. +CC      =    cc $(JUMP_OPT)
  390. +CFLAGS  =    -O6 -fomit-frame-pointer -m486 -D__STDC__=1 -D__USE_BSD_SIGNALS $(OPTIONS)
  391. +LIBCFLAGS=          $(CFLAGS)
  392. +LINT    =    lint
  393. +LFLAGS  =    -bhuz $(OPTIONS)
  394. +LD    =    ld
  395. +LDCC    =    $(CC)
  396. +LDFLAGS =    -s
  397. +ARFLAGS    =
  398. +
  399. +LN    =    ln
  400. +
  401. +LSOCKET    =    $(KRBLIB) -lshadow -ldbm -lm
  402. +
  403. +
  404. +###############################################################################
  405. +# Generation Rules for library modules
  406. +###############################################################################
  407. +
  408. +.c.o:;        $(CC) $(LIBCFLAGS) -c $*.c
  409. +        -ld -x -r $@
  410. +        mv a.out $@
  411. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/dirent/Makefile isode-8.0/dirent/Makefile
  412. --- old/isode-8.0/dirent/Makefile    Tue Jun 16 11:17:26 1992
  413. +++ isode-8.0/dirent/Makefile    Tue Aug 24 11:53:42 1993
  414. @@ -45,6 +45,18 @@
  415.  
  416.  inst-libdirent:    $(LIBDIR)libdirent.a $(LINTDIR)llib-ldirent
  417.  
  418. +zap-dirent:
  419. +        -rm -f $(OFILES) libdirent.a direntvrsn.o
  420. +
  421. +linux-lib:    zap-dirent ../jump/libdirent.a
  422. +
  423. +../jump/libdirent.a:    libdirent.a
  424. +        -rm -f $@
  425. +        cp libdirent.a $@
  426. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  427. +        -@ls -gls $@
  428. +        -@echo ""
  429. +
  430.  $(LIBDIR)libdirent.a:    libdirent.a
  431.          -rm -f $@
  432.          cp libdirent.a $@
  433. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/dirent/scandir.c isode-8.0/dirent/scandir.c
  434. --- old/isode-8.0/dirent/scandir.c    Tue Jun 16 11:17:27 1992
  435. +++ isode-8.0/dirent/scandir.c    Fri Dec  3 13:27:01 1993
  436. @@ -19,6 +19,8 @@
  437.   * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  438.   */
  439.  
  440. +#ifndef __linux__
  441. +
  442.  #if defined(LIBC_SCCS) && !defined(lint)
  443.  static char sccsid[] = "@(#)scandir.c    5.9 (Berkeley) 6/24/90";
  444.  #endif /* LIBC_SCCS and not lint */
  445. @@ -121,3 +123,8 @@
  446.      return(strcmp((*(struct dirent **)d1)->d_name,
  447.          (*(struct dirent **)d2)->d_name));
  448.  }
  449. +
  450. +#else
  451. +int    _scandir_stub () {;}
  452. +int    _alphasort_stub () {;}
  453. +#endif
  454. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/dsap/Makefile isode-8.0/dsap/Makefile
  455. --- old/isode-8.0/dsap/Makefile    Tue Jun 16 13:12:27 1992
  456. +++ isode-8.0/dsap/Makefile    Wed Aug 25 08:35:46 1993
  457. @@ -48,6 +48,16 @@
  458.  clean:        sub-clean
  459.              rm -f lib*.a lib*.so* llib-l* _* *.tmp *.orig *.o z* dsapvrsn.c
  460.          rm -f libdsap-shared
  461. +
  462. +linux-lib:    dsap-linux linux-subs
  463. +
  464. +linux-subs:
  465. +        @for i in $(DIRS); \
  466. +            do (echo "cd $$i; $(MAKE) linux-lib"; \
  467. +                cd $$i; \
  468. +                JUMP_DIR=../../jump/ JUMP_LIB=libdsap \
  469. +                JUMP_OPT=-B/usr/dll/jump/ $(MAKE) linux-lib); \
  470. +            done
  471.  sub-all:
  472.          @for i in $(DIRS); \
  473.              do (echo "cd $$i; $(MAKE) all"; \
  474. @@ -79,6 +89,18 @@
  475.  inst-libdsap:   inst-headers $(LIBDIR)libdsap.a $(LINTDIR)llib-ldsap
  476.  
  477.  inst-headers:;    cd x500as; $(MAKE) inst-headers
  478. +
  479. +inst-libcompat:    $(LIBDIR)libicompat.a $(LINTDIR)llib-licompat
  480. +
  481. +zap-dsap:
  482. +        -rm -f dsapvrsn.o
  483. +
  484. +dsap-linux:    zap-dsap ../jump/libdsap.a
  485. +
  486. +../jump/libdsap.a:    dsapvrsn.o
  487. +        -rm -f $@
  488. +        ar q $@ dsapvrsn.o
  489. +        -@echo ""
  490.  
  491.  $(LIBDIR)libdsap.a:     libdsap.a
  492.          @for i in libdsap.* ;\
  493. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/dsap/common/Makefile isode-8.0/dsap/common/Makefile
  494. --- old/isode-8.0/dsap/common/Makefile    Tue Jun 16 13:12:40 1992
  495. +++ isode-8.0/dsap/common/Makefile    Tue Aug 24 12:10:09 1993
  496. @@ -128,6 +128,18 @@
  497.          $(LINT) $(LFLAGS) $(CFILES) $(LLIBS) \
  498.              | grep -v "warning: possible pointer alignment problem"
  499.  
  500. +zap-common:
  501. +        -rm -f $(OFILES) libcommon.a commonvrsn.o
  502. +
  503. +linux-lib:    zap-common ../../jump/libcommon.a
  504. +
  505. +../../jump/libcommon.a:    libcommon.a
  506. +        -rm -f $@
  507. +        cp libcommon.a $@
  508. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  509. +        -@ls -gls $@
  510. +        -@echo ""
  511. +
  512.  test:        test.o libcommon.a ../libx500as.a
  513.          $(LDCC) $(LDFLAGS) test.o libcommon.a ../libx500as.a \
  514.              libcommon.a $(LIBISODE) -o test
  515. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/dsap/common/integer.c isode-8.0/dsap/common/integer.c
  516. --- old/isode-8.0/dsap/common/integer.c    Tue Jun 16 13:13:16 1992
  517. +++ isode-8.0/dsap/common/integer.c    Fri Aug 20 10:52:48 1993
  518. @@ -108,7 +108,9 @@
  519.  static int * intparse (str)
  520.  char * str;
  521.  {
  522. +#ifndef atoi
  523.  int atoi();
  524. +#endif
  525.  int * x;
  526.  
  527.      x = (int *) smalloc (sizeof (int));
  528. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/dsap/net/Makefile isode-8.0/dsap/net/Makefile
  529. --- old/isode-8.0/dsap/net/Makefile    Tue Jun 16 13:14:06 1992
  530. +++ isode-8.0/dsap/net/Makefile    Tue Aug 24 12:11:13 1993
  531. @@ -88,6 +88,18 @@
  532.  netvrsn.c:      $(OFILES)
  533.          @$(UTILDIR)version.sh net > $@
  534.  
  535. +zap-net:
  536. +        -rm -f $(OFILES) libnet.a netvrsn.o
  537. +
  538. +linux-lib:    zap-net ../../jump/libnet.a
  539. +
  540. +../../jump/libnet.a:    libnet.a
  541. +        -rm -f $@
  542. +        cp libnet.a $@
  543. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  544. +        -@ls -gls $@
  545. +        -@echo ""
  546. +
  547.  l-libnet:       $(CFILES) true
  548.          $(LINT) $(LFLAGS) $(CFILES) $(LLIBS) \
  549.              | grep -v "warning: possible pointer alignment problem"
  550. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/dsap/x500as/Makefile isode-8.0/dsap/x500as/Makefile
  551. --- old/isode-8.0/dsap/x500as/Makefile    Tue Jun 16 13:14:33 1992
  552. +++ isode-8.0/dsap/x500as/Makefile    Tue Aug 24 12:08:21 1993
  553. @@ -81,6 +81,18 @@
  554.  l-libx500as:;    $(LINT) $(LFLAGS) $(CFILES) $(PEPY-C) $(LLIBS) \
  555.              | grep -v "warning: possible pointer alignment problem"
  556.  
  557. +zap-x500as:
  558. +        -rm -f $(OFILES) libx500as.a x500asvrsn.o
  559. +
  560. +linux-lib:    zap-x500as ../../jump/libx500as.a
  561. +
  562. +../../jump/libx500as.a:    libx500as.a
  563. +        -rm -f $@
  564. +        cp libx500as.a $@
  565. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  566. +        -@ls -gls $@
  567. +        -@echo ""
  568. +
  569.  
  570.  #######################################################
  571.  # saber
  572. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/ftam/Makefile isode-8.0/ftam/Makefile
  573. --- old/isode-8.0/ftam/Makefile    Tue Jun 16 13:14:56 1992
  574. +++ isode-8.0/ftam/Makefile    Wed Aug 25 14:33:01 1993
  575. @@ -78,6 +78,19 @@
  576.  
  577.  inst-libftam:    $(LIBDIR)libftam.a inst-headers $(LINTDIR)llib-lftam
  578.  
  579. +zap-ftam:
  580. +        -rm -f $(OFILES) libftam.a \
  581. +            CONT_tables.o FADU_tables.o FTAM_tables.o ftamvrsn.o
  582. +
  583. +linux-lib:    zap-ftam ../jump/libftam.a
  584. +
  585. +../jump/libftam.a:    libftam
  586. +        -rm -f $@
  587. +        cp libftam.a $@
  588. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  589. +        -@ls -gls $@
  590. +        -@echo ""
  591. +
  592.  $(LIBDIR)libftam.a:    libftam.a
  593.          -rm -f $@
  594.          cp libftam.a $@
  595. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/ftam2/Makefile isode-8.0/ftam2/Makefile
  596. --- old/isode-8.0/ftam2/Makefile    Tue Jun 16 13:15:44 1992
  597. +++ isode-8.0/ftam2/Makefile    Mon Aug 23 14:19:27 1993
  598. @@ -72,6 +72,7 @@
  599.          -@echo ""
  600.  
  601.  ftamd:        xftamd
  602. +        :
  603.  
  604.  xftamd:        ftamd.o ftamsystem.o ftamd-manage.o ftamd-select.o \
  605.              ftamd-trans.o ftamsbr.o DOCS_tables.o $(LIBD)
  606. @@ -107,6 +108,7 @@
  607.          -@echo ""
  608.  
  609.  ftam:        xftam
  610. +        :
  611.  
  612.  xftam:        ftam.o ftamuser.o ftam-assoc.o ftam-dir.o ftam-get.o \
  613.              ftam-glob.o ftam-ls.o ftam-mgmt.o ftam-put.o \
  614. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/ftam2/ftam-get.c isode-8.0/ftam2/ftam-get.c
  615. --- old/isode-8.0/ftam2/ftam-get.c    Tue Jun 16 13:15:45 1992
  616. +++ isode-8.0/ftam2/ftam-get.c    Fri Aug 20 12:56:07 1993
  617. @@ -27,6 +27,9 @@
  618.  
  619.  #include <errno.h>
  620.  #include <stdio.h>
  621. +#ifdef _POSIX_SOURCE
  622. +#include <unistd.h>
  623. +#endif
  624.  #include "ftamuser.h"
  625.  
  626.  /*   */
  627. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/ftam2/ftamd-select.c isode-8.0/ftam2/ftamd-select.c
  628. --- old/isode-8.0/ftam2/ftamd-select.c    Tue Jun 16 13:15:49 1992
  629. +++ isode-8.0/ftam2/ftamd-select.c    Fri Aug 20 12:42:19 1993
  630. @@ -28,6 +28,9 @@
  631.  #include <grp.h>
  632.  #include <stdio.h>
  633.  #include <pwd.h>
  634. +#ifdef _POSIX_SOURCE
  635. +#include <unistd.h>
  636. +#endif
  637.  #include "ftamsystem.h"
  638.  
  639.  
  640. @@ -63,6 +66,10 @@
  641.  #endif
  642.  
  643.  
  644. +#if !defined(SYS5) && !defined(BRIDGE)
  645. +static int  EACCESS ();
  646. +#endif
  647. +
  648.  #ifdef    SYS5
  649.  #define    EACCESS    access
  650.  
  651. @@ -1528,13 +1535,21 @@
  652.  {
  653.      int        result;
  654.  
  655. +#ifdef _POSIX_SOURCE
  656. +    (void) setreuid (myuid, 0);
  657. +#else
  658.      (void) seteuid (0);
  659.      (void) setruid (myuid);
  660. +#endif
  661.  
  662.      result = access (file, mode);
  663.  
  664. +#ifdef _POSIX_SOURCE
  665. +    (void) setreuid (0, myuid);
  666. +#else
  667.      (void) setruid (0);
  668.      (void) seteuid (myuid);
  669. +#endif
  670.  
  671.      return result;
  672.  }
  673. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/ftam2/ftamd-trans.c isode-8.0/ftam2/ftamd-trans.c
  674. --- old/isode-8.0/ftam2/ftamd-trans.c    Tue Jun 16 13:15:50 1992
  675. +++ isode-8.0/ftam2/ftamd-trans.c    Fri Aug 20 12:20:19 1993
  676. @@ -31,6 +31,10 @@
  677.  #include <sys/times.h>
  678.  #define    TMS
  679.  #endif
  680. +#ifdef _POSIX_SOURCE
  681. +#include <sys/times.h>
  682. +#define TMS
  683. +#endif
  684.  
  685.  /*     DATA */
  686.  
  687. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/ftam2/ftamsystem.c isode-8.0/ftam2/ftamsystem.c
  688. --- old/isode-8.0/ftam2/ftamsystem.c    Tue Jun 16 13:15:52 1992
  689. +++ isode-8.0/ftam2/ftamsystem.c    Tue Aug 31 14:33:30 1993
  690. @@ -44,6 +44,7 @@
  691.  
  692.  #ifdef SHADOW_PW
  693.  #include <shadow.h>
  694. +#include <shadow/pwauth.h>
  695.  #endif
  696.  
  697.  #ifdef    SYS5
  698. @@ -345,14 +346,23 @@
  699.        else
  700.            pw->pw_passwd = shad_res->sp_pwdp;
  701.      }
  702. -#endif /* SHADOW_PW */
  703. -
  704.  
  705. +    if (!guest) {
  706. +          if (pw->pw_passwd && pw->pw_passwd[0] == '@'
  707. +          && pw_auth(pw->pw_passwd, pw->pw_name, PW_FTP, fts->fts_password)) {
  708. +               seterr (FS_ACS_PASSWORD, EREF_RFSU, EREF_IFSU, "");
  709. +          } else if (!valid(fts->fts_password, pw)) {
  710. +               seterr (FS_ACS_PASSWORD, EREF_RFSU, EREF_IFSU, "");
  711. +          }
  712. +    }
  713. +#else /* SHADOW_PW */
  714.      if ((!guest && fts -> fts_password == NULL)
  715.          || *pw -> pw_passwd == NULL
  716.          || (!guest && !chkpassword (initiator, pw -> pw_passwd,
  717.                      fts -> fts_password)))
  718.      seterr (FS_ACS_PASSWORD, EREF_RFSU, EREF_IFSU, "");
  719. +#endif /* SHADOW_PW */
  720. +
  721.  
  722.  #ifdef DEBUG
  723.      advise (LLOG_DEBUG, NULLCP,
  724. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/ftam2/ftamuser.c isode-8.0/ftam2/ftamuser.c
  725. --- old/isode-8.0/ftam2/ftamuser.c    Tue Jun 16 13:15:53 1992
  726. +++ isode-8.0/ftam2/ftamuser.c    Fri Aug 20 12:54:35 1993
  727. @@ -34,6 +34,10 @@
  728.  #include <sys/times.h>
  729.  #define    TMS
  730.  #endif
  731. +#ifdef _POSIX_SOURCE
  732. +#include <sys/times.h>
  733. +#define TMS
  734. +#endif
  735.  #ifdef    BSD42
  736.  #include <sys/ioctl.h>
  737.  #endif
  738. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/ftp-ftam/version isode-8.0/ftp-ftam/version
  739. --- old/isode-8.0/ftp-ftam/version    Tue Jun 16 11:53:35 1992
  740. +++ isode-8.0/ftp-ftam/version    Mon Aug 23 14:21:59 1993
  741. @@ -1 +1 @@
  742. -115
  743. +117
  744. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/h/general.h isode-8.0/h/general.h
  745. --- old/isode-8.0/h/general.h    Wed Jun 17 11:32:31 1992
  746. +++ isode-8.0/h/general.h    Thu Aug 19 10:08:42 1993
  747. @@ -270,6 +270,7 @@
  748.  
  749.  /*   ntohs etc */
  750.  
  751. +#ifndef __linux__
  752.  #ifndef    ntohs
  753.  unsigned short    ntohs ();
  754.  #endif
  755. @@ -282,6 +283,7 @@
  756.  #ifndef    htonl
  757.  unsigned long    htonl ();
  758.  #endif
  759. +#endif /* __linux__ */
  760.  
  761.  int    char2bcd ();
  762.  int    bcd2char ();
  763. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/h/manifest.h isode-8.0/h/manifest.h
  764. --- old/isode-8.0/h/manifest.h    Wed Jun 17 11:32:31 1992
  765. +++ isode-8.0/h/manifest.h    Fri Sep 10 15:57:52 1993
  766. @@ -200,7 +200,7 @@
  767.  #include <sys/select.h>
  768.  #endif
  769.  
  770. -#ifdef    SYS5NLY
  771. +#ifdef SYS5NLY
  772.  typedef unsigned char    u_char;
  773.  typedef unsigned short    u_short;
  774.  typedef unsigned int    u_int;
  775. @@ -303,7 +303,7 @@
  776.  /*     POSIX */
  777.  
  778.  #ifndef    SETSID
  779. -#if    defined(SUNOS41) || defined(BSD44) || defined (SVR4) || defined(_AIX)
  780. +#if    defined(SUNOS41) || defined(BSD44) || defined (SVR4) || defined(_AIX) | defined(__linux__)
  781.  #define    SETSID
  782.  #endif
  783.  #endif
  784. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/h/sys.file.h isode-8.0/h/sys.file.h
  785. --- old/isode-8.0/h/sys.file.h    Wed Jun 17 11:32:31 1992
  786. +++ isode-8.0/h/sys.file.h    Thu Sep 16 10:36:05 1993
  787. @@ -31,7 +31,7 @@
  788.  #include <sys/ioctl.h>
  789.  #endif
  790.  
  791. -#ifdef  BSD42
  792. +#if defined(BSD42) || defined(__linux__)
  793.  #include <sys/file.h>
  794.  #else    
  795.  #ifdef  SYS5
  796. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/h/usr.dirent.h isode-8.0/h/usr.dirent.h
  797. --- old/isode-8.0/h/usr.dirent.h    Wed Jun 17 11:32:31 1992
  798. +++ isode-8.0/h/usr.dirent.h    Fri Dec  3 13:27:48 1993
  799. @@ -56,8 +56,9 @@
  800.  
  801.  extern char             *getcwd ();
  802.  
  803. -
  804. +#ifndef __linux__
  805.  #define    scandir    _scandir
  806.  #define    alphasort _alphasort
  807. +#endif
  808.  
  809.  extern char *direntversion;
  810. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/imisc/Makefile isode-8.0/imisc/Makefile
  811. --- old/isode-8.0/imisc/Makefile    Tue Jun 16 13:23:44 1992
  812. +++ isode-8.0/imisc/Makefile    Mon Aug 23 13:49:29 1993
  813. @@ -73,6 +73,7 @@
  814.          -@echo ""
  815.  
  816.  imiscd:        ximiscd$(LPP)
  817. +        :
  818.  
  819.  ximiscd$(LPP):    imiscd.o IMISC-Rops.o ryresponder.o IMISC_tables.o $(LIBES)
  820.          $(LDCC) $(LDFLAGS) -o $@ imiscd.o IMISC-Rops.o ryresponder.o \
  821. @@ -107,6 +108,7 @@
  822.          -@echo ""
  823.  
  824.  imisc:        ximisc$(LPP)
  825. +        :
  826.  
  827.  ximisc$(LPP):    imisc.o IMISC-Iops.o ryinitiator.o IMISC_tables.o $(LIBES)
  828.          $(LDCC) $(LDFLAGS) -o $@ imisc.o IMISC-Iops.o ryinitiator.o \
  829. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/jump/Makefile isode-8.0/jump/Makefile
  830. --- old/isode-8.0/jump/Makefile    Thu Jan  1 01:00:00 1970
  831. +++ isode-8.0/jump/Makefile    Fri Aug 27 12:16:36 1993
  832. @@ -0,0 +1,42 @@
  833. +IMAGE=        libisode
  834. +VERSION=    0.1
  835. +ADDRESS=    0x63d00000
  836. +JUMPSIZE=    0x8000
  837. +GOTSIZE=    0x2000
  838. +
  839. +
  840. +all:        image stubs
  841. +
  842. +install:
  843. +        ln -f libdsap.sa ../libdsap.a
  844. +        ln -f libftam.sa ../libftam.a
  845. +        ln -f libisode.sa ../libacsap.a
  846. +        ln -f libisode.sa ../libcompat.a
  847. +        ln -f libisode.sa ../libdirent.a
  848. +        ln -f libisode.sa ../libisode.a
  849. +        ln -f libisode.sa ../libpepsy.a
  850. +        ln -f libisode.sa ../libpepy.a
  851. +        ln -f libisode.sa ../libpsap.a
  852. +        ln -f libisode.sa ../libpsap2.a
  853. +        ln -f libisode.sa ../libronot.a
  854. +        ln -f libisode.sa ../librosap.a
  855. +        ln -f libisode.sa ../librosy.a
  856. +        ln -f libisode.sa ../librtsap.a
  857. +        ln -f libisode.sa ../libssap.a
  858. +        ln -f libisode.sa ../libtsap.a
  859. +
  860. +image:
  861. +        /usr/dll/bin/mkimage -l $(IMAGE) -v $(VERSION) \
  862. +            -a $(ADDRESS) -j $(JUMPSIZE) -g $(GOTSIZE) \
  863. +            -- \
  864. +            libacsap.a libcommon.a libcompat.a libdirent.a \
  865. +            libdsap.a libftam.a libnet.a libpepsy.a libpepy.a \
  866. +            libpsap.a libpsap2.a libronot.a librosap.a librosy.a \
  867. +            librtsap.a libssap.a libtsap.a libx500as.a libisode.a \
  868. +            -lcurses -ltermcap -ldbm -lc -lm `gcc --print` -lc
  869. +
  870. +stubs:
  871. +        /usr/dll/bin/mkstubs -l $(IMAGE) -v $(VERSION) \
  872. +            -a $(ADDRESS) -j $(JUMPSIZE) -g $(GOTSIZE) \
  873. +            -- \
  874. +            libisode libdsap libftam
  875. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/jump/jump.funcs isode-8.0/jump/jump.funcs
  876. --- old/isode-8.0/jump/jump.funcs    Thu Jan  1 01:00:00 1970
  877. +++ isode-8.0/jump/jump.funcs    Fri Dec  3 13:28:19 1993
  878. @@ -0,0 +1,1447 @@
  879. +00000000 T _PRyStub             libisode       p-rystub
  880. +00000000 T _PRyDiscard          libisode       p-rydiscard
  881. +00000000 T _PRyOperation        libisode       p-ryoper
  882. +00000000 T _PRyOpInvoke         libisode       p-ryopinvoke
  883. +00000000 T _PRyGenID            libisode       p-rygenid
  884. +00000000 T _PRyDispatch         libisode       p-rydispatch
  885. +00000000 T _PRyDsResult         libisode       p-rydsresult
  886. +00000000 T _PRyDsError          libisode       p-rydserror
  887. +00000000 T _PRyDsUReject        libisode       p-rydsurej
  888. +00000000 T _PRyWait             libisode       p-rywait
  889. +00000000 T _PRyWaitAux          libisode       p-rywait
  890. +00000000 T _Pnewopblk           libisode       p-ryopblock
  891. +00000000 T _Pfreeopblk          libisode       p-ryopblock
  892. +00000000 T _Pfindopblk          libisode       p-ryopblock
  893. +00000000 T _Pfirstopblk         libisode       p-ryopblock
  894. +00000000 T _Ploseopblk          libisode       p-ryopblock
  895. +00000000 T _Pnewdsblk           libisode       p-rydsblock
  896. +00000000 T _Pfreedsblk          libisode       p-rydsblock
  897. +00000000 T _Pfinddsblk          libisode       p-rydsblock
  898. +00000000 T _Plosedsblk          libisode       p-rydsblock
  899. +00000000 T _Pfindopbyop         libisode       p-ryfind
  900. +00000000 T _Pfindopbyname       libisode       p-ryfind
  901. +00000000 T _Pfinderrbyerr       libisode       p-ryfind
  902. +00000000 T _Pfinderrbyname      libisode       p-ryfind
  903. +00000000 T _PRyLose             libisode       p-rylose
  904. +00000000 T _RyStub              libisode       rystub
  905. +00000000 T _RyDiscard           libisode       rydiscard
  906. +00000000 T _RyOperation         libisode       ryoper
  907. +00000000 T _RyOpInvoke          libisode       ryopinvoke
  908. +00000000 T _RyGenID             libisode       rygenid
  909. +00000000 T _RyDispatch          libisode       rydispatch
  910. +00000000 T _RyDsResult          libisode       rydsresult
  911. +00000000 T _RyDsError           libisode       rydserror
  912. +00000000 T _RyDsUReject         libisode       rydsurej
  913. +00000000 T _RyWait              libisode       rywait
  914. +00000000 T _RyWaitAux           libisode       rywait
  915. +00000000 T _newopblk            libisode       ryopblock
  916. +00000000 T _freeopblk           libisode       ryopblock
  917. +00000000 T _findopblk           libisode       ryopblock
  918. +00000000 T _firstopblk          libisode       ryopblock
  919. +00000000 T _loseopblk           libisode       ryopblock
  920. +00000000 T _newdsblk            libisode       rydsblock
  921. +00000000 T _freedsblk           libisode       rydsblock
  922. +00000000 T _finddsblk           libisode       rydsblock
  923. +00000000 T _losedsblk           libisode       rydsblock
  924. +00000000 T _findopbyop          libisode       ryfind
  925. +00000000 T _findopbyname        libisode       ryfind
  926. +00000000 T _finderrbyerr        libisode       ryfind
  927. +00000000 T _finderrbyname       libisode       ryfind
  928. +00000000 T _RyLose              libisode       rylose
  929. +00000000 T _RoAsynBindRequest   libisode       ronotbind1
  930. +00000000 T _RoAsynBindRetry     libisode       ronotbind1
  931. +00000000 T _ParseRoBindResponse libisode       ronotbind1
  932. +00000000 T _RoBindInit          libisode       ronotbind2
  933. +00000000 T _ParseRoBindArgument libisode       ronotbind2
  934. +00000000 T _RoBindResult        libisode       ronotbind2
  935. +00000000 T _RoBindError         libisode       ronotbind2
  936. +00000000 T _RoBindReject        libisode       ronotbind2
  937. +00000000 T _RoUnBindRequest     libisode       ronotunbind1
  938. +00000000 T _RoUnBindRetry       libisode       ronotunbind1
  939. +00000000 T _ParseRoUnBindResponse libisode       ronotunbind1
  940. +00000000 T _RoUnBindInit        libisode       ronotunbind2
  941. +00000000 T _RoUnBindResult      libisode       ronotunbind2
  942. +00000000 T _RoUnBindError       libisode       ronotunbind2
  943. +00000000 T _RoUnBindReject      libisode       ronotunbind2
  944. +00000000 T _RoBindUAbort        libisode       ronotabort
  945. +00000000 T _ronotlose           libisode       ronotlose
  946. +00000000 T _acs2ronotlose       libisode       ronotlose
  947. +00000000 T _RoErrString         libisode       rosaperror
  948. +00000000 T _RoInvokeRequest     libisode       rosapinvoke
  949. +00000000 T _RoResultRequest     libisode       rosapresult
  950. +00000000 T _RoErrorRequest      libisode       rosapuerror
  951. +00000000 T _RoURejectRequest    libisode       rosapureject
  952. +00000000 T _RoURejectRequestAux libisode       rosapureject
  953. +00000000 T _RoIntrRequest       libisode       rosapintr
  954. +00000000 T _RoWaitRequest       libisode       rosapwait
  955. +00000000 T _RoSetService        libisode       rosapservice
  956. +00000000 T _acb2osdu            libisode       rosapapdu
  957. +00000000 T _RoSetIndications    libisode       rosapasync
  958. +00000000 T _RoSelectMask        libisode       rosapselect
  959. +00000000 T _ropktlose           libisode       rosaplose
  960. +00000000 T _rosapreject         libisode       rosaplose
  961. +00000000 T _rosaplose           libisode       rosaplose
  962. +00000000 T _RoRtService         libisode       ro2rts
  963. +00000000 T _ro2rtsasync         libisode       ro2rts
  964. +00000000 T _ro2rtsmask          libisode       ro2rts
  965. +00000000 T _ro2rtswait          libisode       ro2rts
  966. +00000000 T _ro2rtswrite         libisode       ro2rts
  967. +00000000 T _ro2rtsready         libisode       ro2rts
  968. +00000000 T _RoPService          libisode       ro2ps
  969. +00000000 T _ro2psasync          libisode       ro2ps
  970. +00000000 T _ro2psmask           libisode       ro2ps
  971. +00000000 T _ro2pswait           libisode       ro2ps
  972. +00000000 T _ro2pswrite          libisode       ro2ps
  973. +00000000 T _RoExec              libisode       ro2ssexec
  974. +00000000 T _RoInit              libisode       ro2ssrespond
  975. +00000000 T _RoBeginResponse     libisode       ro2ssrespond
  976. +00000000 T _RoBeginRequest      libisode       ro2ssinitiat
  977. +00000000 T _RoEndRequest        libisode       ro2ssreleas1
  978. +00000000 T _RoEndResponse       libisode       ro2ssreleas2
  979. +00000000 T _RoSService          libisode       ro2ss
  980. +00000000 T _ro2ssasync          libisode       ro2ss
  981. +00000000 T _ro2ssmask           libisode       ro2ss
  982. +00000000 T _ro2sslose           libisode       ro2ss
  983. +00000000 T _ro2sswait           libisode       ro2ss
  984. +00000000 T _ro2ssready          libisode       ro2ss
  985. +00000000 T _ro2sswrite          libisode       ro2ss
  986. +00000000 T _ss2rosabort         libisode       ro2ss
  987. +00000000 T _ss2roslose          libisode       ro2ss
  988. +00000000 T _RoSetThorn          libisode       ro2ssthorn
  989. +00000000 T _RtErrString         libisode       rtsaperror
  990. +00000000 T _RtPTurnRequest      libisode       rtsappturn
  991. +00000000 T _RtGTurnRequest      libisode       rtsapgturn
  992. +00000000 T _RtTransferRequest   libisode       rtsaptrans
  993. +00000000 T _RtWaitRequest       libisode       rtsapwait
  994. +00000000 T _RtWaitRequestAux    libisode       rtsapwait
  995. +00000000 T _RtSetIndications    libisode       rtsapasync
  996. +00000000 T _RtSelectMask        libisode       rtsapselect
  997. +00000000 T _rtpktlose           libisode       rtsaplose
  998. +00000000 T _rtsaplose           libisode       rtsaplose
  999. +00000000 T _RtSetDownTrans      libisode       rtsapdtrans
  1000. +00000000 T _RtSetUpTrans        libisode       rtsaputrans
  1001. +00000000 T _RtInit_Aux          libisode       rt2psrespond
  1002. +00000000 T _RtOpenResponse      libisode       rt2psrespond
  1003. +00000000 T _RtOpenRequest2      libisode       rt2psinitiat
  1004. +00000000 T _RtUAbortRequest     libisode       rt2psabort
  1005. +00000000 T _RtCloseRequest      libisode       rt2psreleas1
  1006. +00000000 T _RtCloseResponse     libisode       rt2psreleas2
  1007. +00000000 T _rt2pspturn          libisode       rt2ps
  1008. +00000000 T _rt2psgturn          libisode       rt2ps
  1009. +00000000 T _rt2pstrans          libisode       rt2ps
  1010. +00000000 T _rt2pswait           libisode       rt2ps
  1011. +00000000 T _rt2psasync          libisode       rt2ps
  1012. +00000000 T _rt2psmask           libisode       rt2ps
  1013. +00000000 T _rt2pslose           libisode       rt2ps
  1014. +00000000 T _acs2rtslose         libisode       rt2ps
  1015. +00000000 T _acs2rtsabort        libisode       rt2ps
  1016. +00000000 T _ps2rtslose          libisode       rt2ps
  1017. +00000000 T _RtExec              libisode       rt2ssexec
  1018. +00000000 T _RtBInit             libisode       rt2ssrespond
  1019. +00000000 T _RtBeginResponse     libisode       rt2ssrespond
  1020. +00000000 T _RtBeginRequest2     libisode       rt2ssinitiat
  1021. +00000000 T _RtEndRequest        libisode       rt2ssreleas1
  1022. +00000000 T _RtEndResponse       libisode       rt2ssreleas2
  1023. +00000000 T _rt2sspturn          libisode       rt2ss
  1024. +00000000 T _rt2ssgturn          libisode       rt2ss
  1025. +00000000 T _rt2sstrans          libisode       rt2ss
  1026. +00000000 T _rt2sswait           libisode       rt2ss
  1027. +00000000 T _rt2ssasync          libisode       rt2ss
  1028. +00000000 T _rt2ssmask           libisode       rt2ss
  1029. +00000000 T _rt2sslose           libisode       rt2ss
  1030. +00000000 T _ss2rtsabort         libisode       rt2ss
  1031. +00000000 T _ss2rtslose          libisode       rt2ss
  1032. +00000000 T _ps2acslose          libisode       acsaprovider
  1033. +00000000 T _info2apdu           libisode       acsaprovider
  1034. +00000000 T _apdu2info           libisode       acsaprovider
  1035. +00000000 T _newacblk            libisode       acsapblock
  1036. +00000000 T _freeacblk           libisode       acsapblock
  1037. +00000000 T _findacblk           libisode       acsapblock
  1038. +00000000 T _AcErrString         libisode       acsaperror
  1039. +00000000 T _acpktlose           libisode       acsaplose
  1040. +00000000 T _acsaplose           libisode       acsaplose
  1041. +00000000 T _AcInit              libisode       acsaprespond
  1042. +00000000 T _AcAssocResponse     libisode       acsaprespond
  1043. +00000000 T _AcAsynAssocRequest  libisode       acsapinitiat
  1044. +00000000 T _AcAsynRetryRequest  libisode       acsapinitiat
  1045. +00000000 T _AcAsynNextRequest   libisode       acsapinitiat
  1046. +00000000 T _AcRelRequest        libisode       acsapreleas1
  1047. +00000000 T _AcRelRetryRequest   libisode       acsapreleas1
  1048. +00000000 T _AcRelResponse       libisode       acsapreleas2
  1049. +00000000 T _AcFINISHser         libisode       acsapreleas3
  1050. +00000000 T _AcUAbortRequest     libisode       acsapabort1
  1051. +00000000 T _AcABORTser          libisode       acsapabort2
  1052. +00000000 T _ps2acsabort         libisode       acsapabort2
  1053. +00000000 T _AcFindPCI           libisode       acsapfindpci
  1054. +00000000 T __str2aei            libisode       acsapaddr
  1055. +00000000 T _aei2addr            libisode       acsapaddr
  1056. +00000000 T _str2aei_dse         libisode       acsapdse
  1057. +00000000 T _aei2addr_dse        libisode       acsapdse
  1058. +00000000 T _name2value_dase     libisode       aetdase
  1059. +00000000 T _set_lookup_dase     libisode       aetdase
  1060. +00000000 T _alias2name          libisode       isoalias
  1061. +00000000 T _add_alias           libisode       isoalias
  1062. +00000000 T _str2aei_stub        libisode       acsapstub
  1063. +00000000 T _aei2addr_stub       libisode       acsapstub
  1064. +00000000 T _str2aet_seq         libisode       aetseq
  1065. +00000000 T _setisoentity        libisode       isoentity
  1066. +00000000 T _endisoentity        libisode       isoentity
  1067. +00000000 T _getisoentity        libisode       isoentity
  1068. +00000000 T __startisoentity     libisode       isoentity
  1069. +00000000 T __stopisoentity      libisode       isoentity
  1070. +00000000 T __printent           libisode       isoentity
  1071. +00000000 T _oid2aei             libisode       oid2aei
  1072. +00000000 T _sprintaei           libisode       sprintaei
  1073. +00000000 T _is2paddr            libisode       is2paddr
  1074. +00000000 T _is2saddr            libisode       is2saddr
  1075. +00000000 T _is2taddr            libisode       is2taddr
  1076. +00000000 T _isodeserver         libisode       acserver1
  1077. +00000000 T _iserver_init        libisode       acserver2
  1078. +00000000 T _iserver_init_aux    libisode       acserver2
  1079. +00000000 T _iserver_initAux     libisode       acserver2
  1080. +00000000 T _iserver_wait        libisode       acserver2
  1081. +00000000 T _iserver_mask        libisode       acserver2
  1082. +00000000 T _build_DSE_PSAPaddr  libisode       dse-c
  1083. +00000000 T _parse_DSE_PSAPaddr  libisode       dse-c
  1084. +00000000 T _PDataRequest        libisode       psaprovider
  1085. +00000000 T _PDataRequestAux     libisode       psaprovider
  1086. +00000000 T _PReadRequest        libisode       psaprovider
  1087. +00000000 T _ss2psabort          libisode       psaprovider
  1088. +00000000 T _PSetIndications     libisode       psaprovider
  1089. +00000000 T _ss2pslose           libisode       psaprovider
  1090. +00000000 T _newpblk             libisode       psaprovider
  1091. +00000000 T _freepblk            libisode       psaprovider
  1092. +00000000 T _findpblk            libisode       psaprovider
  1093. +00000000 T _info2ppdu           libisode       psaprovider
  1094. +00000000 T _ppdu2info           libisode       psaprovider
  1095. +00000000 T _info2ssdu           libisode       psaprovider
  1096. +00000000 T _ssdu2info           libisode       psaprovider
  1097. +00000000 T _qbuf2info           libisode       psaprovider
  1098. +00000000 T _info2qb             libisode       psaprovider
  1099. +00000000 T _qb2info             libisode       psaprovider
  1100. +00000000 T _silly_list          libisode       psaprovider
  1101. +00000000 T _PErrString          libisode       psap2error
  1102. +00000000 T _PExec               libisode       psapexec
  1103. +00000000 T _PInit               libisode       psaprespond
  1104. +00000000 T _PConnResponse       libisode       psaprespond
  1105. +00000000 T _PAsynConnRequest    libisode       psapinitiate
  1106. +00000000 T _PAsynRetryRequest   libisode       psapinitiate
  1107. +00000000 T _PAsynNextRequest    libisode       psapinitiate
  1108. +00000000 T _PGTokenRequest      libisode       psaptoken
  1109. +00000000 T _PPTokenRequest      libisode       psaptoken
  1110. +00000000 T _PGControlRequest    libisode       psapactivity
  1111. +00000000 T _PActStartRequest    libisode       psapactivity
  1112. +00000000 T _PActResumeRequest   libisode       psapactivity
  1113. +00000000 T _PActIntrRequestAux  libisode       psapactivity
  1114. +00000000 T _PActIntrResponseAux libisode       psapactivity
  1115. +00000000 T _PMajSyncRequestAux  libisode       psapmajor1
  1116. +00000000 T _PMajSyncResponseAux libisode       psapmajor2
  1117. +00000000 T _PMinSyncRequest     libisode       psapminor1
  1118. +00000000 T _PMinSyncResponse    libisode       psapminor2
  1119. +00000000 T _PReSyncRequest      libisode       psapresync1
  1120. +00000000 T _PReSyncResponse     libisode       psapresync2
  1121. +00000000 T _PUAbortRequest      libisode       psapabort
  1122. +00000000 T _PUReportRequest     libisode       psapreport
  1123. +00000000 T _PRelRequest         libisode       psaprelease1
  1124. +00000000 T _PRelRetryRequest    libisode       psaprelease1
  1125. +00000000 T _PRelResponse        libisode       psaprelease2
  1126. +00000000 T _PSelectMask         libisode       psapselect
  1127. +00000000 T _ppktlose            libisode       psaplose
  1128. +00000000 T _psaplose            libisode       psaplose
  1129. +00000000 T _build_UNIV_IA5String libisode       UPEPY-01
  1130. +00000000 T _parse_UNIV_IA5String libisode       UPEPY-02
  1131. +00000000 T _print_UNIV_IA5String libisode       UPEPY-03
  1132. +00000000 T _build_UNIV_NumericString libisode       UPEPY-04
  1133. +00000000 T _parse_UNIV_NumericString libisode       UPEPY-05
  1134. +00000000 T _print_UNIV_NumericString libisode       UPEPY-06
  1135. +00000000 T _build_UNIV_PrintableString libisode       UPEPY-07
  1136. +00000000 T _parse_UNIV_PrintableString libisode       UPEPY-08
  1137. +00000000 T _print_UNIV_PrintableString libisode       UPEPY-09
  1138. +00000000 T _build_UNIV_T61String libisode       UPEPY-10
  1139. +00000000 T _parse_UNIV_T61String libisode       UPEPY-11
  1140. +00000000 T _print_UNIV_T61String libisode       UPEPY-12
  1141. +00000000 T _build_UNIV_TeletexString libisode       UPEPY-13
  1142. +00000000 T _parse_UNIV_TeletexString libisode       UPEPY-14
  1143. +00000000 T _print_UNIV_TeletexString libisode       UPEPY-15
  1144. +00000000 T _build_UNIV_VideotexString libisode       UPEPY-16
  1145. +00000000 T _parse_UNIV_VideotexString libisode       UPEPY-17
  1146. +00000000 T _print_UNIV_VideotexString libisode       UPEPY-18
  1147. +00000000 T _build_UNIV_GeneralizedTime libisode       UPEPY-19
  1148. +00000000 T _parse_UNIV_GeneralizedTime libisode       UPEPY-20
  1149. +00000000 T _print_UNIV_GeneralizedTime libisode       UPEPY-21
  1150. +00000000 T _build_UNIV_GeneralisedTime libisode       UPEPY-22
  1151. +00000000 T _parse_UNIV_GeneralisedTime libisode       UPEPY-23
  1152. +00000000 T _print_UNIV_GeneralisedTime libisode       UPEPY-24
  1153. +00000000 T _build_UNIV_UTCTime  libisode       UPEPY-25
  1154. +00000000 T _parse_UNIV_UTCTime  libisode       UPEPY-26
  1155. +00000000 T _print_UNIV_UTCTime  libisode       UPEPY-27
  1156. +00000000 T _build_UNIV_UniversalTime libisode       UPEPY-28
  1157. +00000000 T _parse_UNIV_UniversalTime libisode       UPEPY-29
  1158. +00000000 T _print_UNIV_UniversalTime libisode       UPEPY-30
  1159. +00000000 T _build_UNIV_GraphicString libisode       UPEPY-31
  1160. +00000000 T _parse_UNIV_GraphicString libisode       UPEPY-32
  1161. +00000000 T _print_UNIV_GraphicString libisode       UPEPY-33
  1162. +00000000 T _build_UNIV_VisibleString libisode       UPEPY-34
  1163. +00000000 T _parse_UNIV_VisibleString libisode       UPEPY-35
  1164. +00000000 T _print_UNIV_VisibleString libisode       UPEPY-36
  1165. +00000000 T _build_UNIV_ISO646String libisode       UPEPY-37
  1166. +00000000 T _parse_UNIV_ISO646String libisode       UPEPY-38
  1167. +00000000 T _print_UNIV_ISO646String libisode       UPEPY-39
  1168. +00000000 T _build_UNIV_GeneralString libisode       UPEPY-40
  1169. +00000000 T _parse_UNIV_GeneralString libisode       UPEPY-41
  1170. +00000000 T _print_UNIV_GeneralString libisode       UPEPY-42
  1171. +00000000 T _build_UNIV_CharacterString libisode       UPEPY-43
  1172. +00000000 T _parse_UNIV_CharacterString libisode       UPEPY-44
  1173. +00000000 T _print_UNIV_CharacterString libisode       UPEPY-45
  1174. +00000000 T _build_UNIV_EXTERNAL libisode       UPEPY-46
  1175. +00000000 T _parse_UNIV_EXTERNAL libisode       UPEPY-47
  1176. +00000000 T _print_UNIV_EXTERNAL libisode       UPEPY-48
  1177. +00000000 T _build_UNIV_ObjectDescriptor libisode       UPEPY-49
  1178. +00000000 T _parse_UNIV_ObjectDescriptor libisode       UPEPY-50
  1179. +00000000 T _print_UNIV_ObjectDescriptor libisode       UPEPY-51
  1180. +00000000 T _encode_UNIV_IA5String libisode       VPEPY-01
  1181. +00000000 T _encode_UNIV_NumericString libisode       VPEPY-02
  1182. +00000000 T _encode_UNIV_PrintableString libisode       VPEPY-03
  1183. +00000000 T _encode_UNIV_T61String libisode       VPEPY-04
  1184. +00000000 T _encode_UNIV_TeletexString libisode       VPEPY-05
  1185. +00000000 T _encode_UNIV_VideotexString libisode       VPEPY-06
  1186. +00000000 T _encode_UNIV_GeneralizedTime libisode       VPEPY-07
  1187. +00000000 T _encode_UNIV_GeneralisedTime libisode       VPEPY-08
  1188. +00000000 T _encode_UNIV_UTCTime libisode       VPEPY-09
  1189. +00000000 T _encode_UNIV_UniversalTime libisode       VPEPY-10
  1190. +00000000 T _encode_UNIV_GraphicString libisode       VPEPY-11
  1191. +00000000 T _encode_UNIV_VisibleString libisode       VPEPY-12
  1192. +00000000 T _encode_UNIV_ISO646String libisode       VPEPY-13
  1193. +00000000 T _encode_UNIV_GeneralString libisode       VPEPY-14
  1194. +00000000 T _encode_UNIV_CharacterString libisode       VPEPY-15
  1195. +00000000 T _encode_UNIV_EXTERNAL libisode       VPEPY-16
  1196. +00000000 T _encode_UNIV_ObjectDescriptor libisode       VPEPY-17
  1197. +00000000 T _decode_UNIV_IA5String libisode       VPEPY-18
  1198. +00000000 T _decode_UNIV_NumericString libisode       VPEPY-19
  1199. +00000000 T _decode_UNIV_PrintableString libisode       VPEPY-20
  1200. +00000000 T _decode_UNIV_T61String libisode       VPEPY-21
  1201. +00000000 T _decode_UNIV_TeletexString libisode       VPEPY-22
  1202. +00000000 T _decode_UNIV_VideotexString libisode       VPEPY-23
  1203. +00000000 T _decode_UNIV_GeneralizedTime libisode       VPEPY-24
  1204. +00000000 T _decode_UNIV_GeneralisedTime libisode       VPEPY-25
  1205. +00000000 T _decode_UNIV_UTCTime libisode       VPEPY-26
  1206. +00000000 T _decode_UNIV_UniversalTime libisode       VPEPY-27
  1207. +00000000 T _decode_UNIV_GraphicString libisode       VPEPY-28
  1208. +00000000 T _decode_UNIV_VisibleString libisode       VPEPY-29
  1209. +00000000 T _decode_UNIV_ISO646String libisode       VPEPY-30
  1210. +00000000 T _decode_UNIV_GeneralString libisode       VPEPY-31
  1211. +00000000 T _decode_UNIV_CharacterString libisode       VPEPY-32
  1212. +00000000 T _decode_UNIV_EXTERNAL libisode       VPEPY-33
  1213. +00000000 T _decode_UNIV_ObjectDescriptor libisode       VPEPY-34
  1214. +00000000 T _free_UNIV_EXTERNAL  libisode       VPEPY-35
  1215. +00000000 T _PY_pp               libisode       py_pp
  1216. +00000000 T _testdebug           libisode       testdebug
  1217. +00000000 T _enc_f               libisode       enc
  1218. +00000000 T _dec_f               libisode       dec
  1219. +00000000 T _fre_obj             libisode       fre
  1220. +00000000 T _fre_type            libisode       fre
  1221. +00000000 T _callsfn             libisode       fre
  1222. +00000000 T _prnt_f              libisode       prnt
  1223. +00000000 T _next_ptpe           libisode       prnt
  1224. +00000000 T _p_ismatch           libisode       prnt
  1225. +00000000 T _p_setpresent        libisode       prnt
  1226. +00000000 T _printable           libisode       prnt
  1227. +00000000 T _dmp_ptpe            libisode       prnt
  1228. +00000000 T _pepsylose           libisode       util
  1229. +00000000 T _ppepsylose          libisode       util
  1230. +00000000 T _ferr                libisode       util
  1231. +00000000 T _ferrd               libisode       util
  1232. +00000000 T _dmp_tpe             libisode       util
  1233. +00000000 T _pr_petype           libisode       util
  1234. +00000000 T _pr_entry            libisode       util
  1235. +00000000 T _f_null              libisode       util
  1236. +00000000 T _bitscmp             libisode       util
  1237. +00000000 T _ostrcmp             libisode       util
  1238. +00000000 T _hasdata             libisode       util
  1239. +00000000 T _same                libisode       util
  1240. +00000000 T _next_tpe            libisode       util
  1241. +00000000 T _ismatch             libisode       util
  1242. +00000000 T _fdflt_f             libisode       util
  1243. +00000000 T _fdflt_b             libisode       util
  1244. +00000000 T _vpush               libisode       vprint
  1245. +00000000 T _vpop                libisode       vprint
  1246. +00000000 T _vname               libisode       vprint
  1247. +00000000 T _vtag                libisode       vprint
  1248. +00000000 T _vprint              libisode       vprint
  1249. +00000000 T _vstring             libisode       vprint
  1250. +00000000 T _bit2str             libisode       vprint
  1251. +00000000 T _vunknown            libisode       vprint
  1252. +00000000 T _vpushfp             libisode       vprint
  1253. +00000000 T _vsetfp              libisode       vprint
  1254. +00000000 T _vpopfp              libisode       vprint
  1255. +00000000 T _vpushstr            libisode       vprint
  1256. +00000000 T _vpopstr             libisode       vprint
  1257. +00000000 T _vpushpp             libisode       vprint
  1258. +00000000 T _vpopp               libisode       vprint
  1259. +00000000 T _vpushquipu          libisode       vprint
  1260. +00000000 T _vpopquipu           libisode       vprint
  1261. +00000000 T _pvpdu               libisode       vprint
  1262. +00000000 T __vpdu               libisode       vprint
  1263. +00000000 T _PY_advise           libisode       py_advise
  1264. +00000000 T _addr2ref            libisode       addr2ref
  1265. +00000000 T _bit2prim            libisode       bit2prim
  1266. +00000000 T _bitstr2strb         libisode       bitstr2strb
  1267. +00000000 T _bit_on              libisode       bit_ops
  1268. +00000000 T _bit_off             libisode       bit_ops
  1269. +00000000 T _bit_test            libisode       bit_ops
  1270. +00000000 T _dg_open             libisode       dg2ps
  1271. +00000000 T _dg_setup            libisode       dg2ps
  1272. +00000000 T _fdx_open            libisode       fdx2ps
  1273. +00000000 T _fdx_setup           libisode       fdx2ps
  1274. +00000000 T _fdx_reset           libisode       fdx2ps
  1275. +00000000 T _flag2prim           libisode       flag2prim
  1276. +00000000 T _gtime               libisode       gtime
  1277. +00000000 T _int2strb            libisode       int2strb
  1278. +00000000 T _setisobject         libisode       isobject
  1279. +00000000 T _endisobject         libisode       isobject
  1280. +00000000 T _getisobject         libisode       isobject
  1281. +00000000 T _num2prim            libisode       num2prim
  1282. +00000000 T _obj2prim            libisode       obj2prim
  1283. +00000000 T _getisobjectbyname   libisode       objectbyname
  1284. +00000000 T _getisobjectbyoid    libisode       objectbyoid
  1285. +00000000 T _ode2oid             libisode       ode2oid
  1286. +00000000 T _oid_cmp             libisode       oid_cmp
  1287. +00000000 T _elem_cmp            libisode       oid_cmp
  1288. +00000000 T _oid_cpy             libisode       oid_cpy
  1289. +00000000 T _oid_free            libisode       oid_free
  1290. +00000000 T _oid2ode_aux         libisode       oid2ode
  1291. +00000000 T _pe2pl               libisode       pe2pl
  1292. +00000000 T _pe2ps_aux           libisode       pe2ps
  1293. +00000000 T _ps_write_id         libisode       pe2ps
  1294. +00000000 T _ps_write_len        libisode       pe2ps
  1295. +00000000 T _pe2qb_f             libisode       pe2qb_f
  1296. +00000000 T _pe2ssdu             libisode       pe2ssdu
  1297. +00000000 T _pe2text             libisode       pe2text
  1298. +00000000 T _pe2uvec             libisode       pe2uvec
  1299. +00000000 T _pe_alloc            libisode       pe_alloc
  1300. +00000000 T _pe_cmp              libisode       pe_cmp
  1301. +00000000 T _pe_cpy              libisode       pe_cpy
  1302. +00000000 T _pe_error            libisode       pe_error
  1303. +00000000 T _pe_expunge          libisode       pe_expunge
  1304. +00000000 T _pe_extract          libisode       pe_extract
  1305. +00000000 T _pe_free             libisode       pe_free
  1306. +00000000 T _pe_pullup           libisode       pe_pullup
  1307. +00000000 T _pl2pe               libisode       pl2pe
  1308. +00000000 T _prim2bit            libisode       prim2bit
  1309. +00000000 T _prim2flag           libisode       prim2flag
  1310. +00000000 T _prim2num            libisode       prim2num
  1311. +00000000 T _prim2oid            libisode       prim2oid
  1312. +00000000 T _prim2qb             libisode       prim2qb
  1313. +00000000 T _prim2real           libisode       prim2real
  1314. +00000000 T _prim2set            libisode       prim2set
  1315. +00000000 T _prim2str            libisode       prim2str
  1316. +00000000 T _prim2time           libisode       prim2time
  1317. +00000000 T _str2utct            libisode       prim2time
  1318. +00000000 T _str2gent            libisode       prim2time
  1319. +00000000 T _ps2pe_aux           libisode       ps2pe
  1320. +00000000 T _ps_read_id          libisode       ps2pe
  1321. +00000000 T _ps_read_len         libisode       ps2pe
  1322. +00000000 T _ps_read_cons        libisode       ps2pe
  1323. +00000000 T _ps_alloc            libisode       ps_alloc
  1324. +00000000 T _ps_error            libisode       ps_error
  1325. +00000000 T _ps_flush            libisode       ps_flush
  1326. +00000000 T _ps_free             libisode       ps_free
  1327. +00000000 T _ps_get_abs          libisode       ps_get_abs
  1328. +00000000 T _ps_io               libisode       ps_io
  1329. +00000000 T _ps_prime            libisode       ps_prime
  1330. +00000000 T _qb2pe               libisode       qb2pe
  1331. +00000000 T _qb2prim_aux         libisode       qb2prim
  1332. +00000000 T _qb2str              libisode       qb2str
  1333. +00000000 T _qb_free             libisode       qb_free
  1334. +00000000 T _qb_pullup           libisode       qb_pullup
  1335. +00000000 T _qbuf2pe             libisode       qbuf2pe
  1336. +00000000 T _qbuf2pe_f           libisode       qbuf2pe_f
  1337. +00000000 T _qbuf_open           libisode       qbuf2ps
  1338. +00000000 T _real2prim           libisode       real2prim
  1339. +00000000 T _seq_add             libisode       seq_add
  1340. +00000000 T _seq_addon           libisode       seq_addon
  1341. +00000000 T _seq_del             libisode       seq_del
  1342. +00000000 T _seq_find            libisode       seq_find
  1343. +00000000 T _set_add             libisode       set_add
  1344. +00000000 T _set_addon           libisode       set_addon
  1345. +00000000 T _set_del             libisode       set_del
  1346. +00000000 T _set_find            libisode       set_find
  1347. +00000000 T _sprintoid           libisode       sprintoid
  1348. +00000000 T _sprintref           libisode       sprintref
  1349. +00000000 T _ssdu2pe             libisode       ssdu2pe
  1350. +00000000 T _std_flush           libisode       std2ps
  1351. +00000000 T _std_open            libisode       std2ps
  1352. +00000000 T _str2oid             libisode       str2oid
  1353. +00000000 T _str2pe              libisode       str2pe
  1354. +00000000 T _str2prim            libisode       str2prim
  1355. +00000000 T _str_open            libisode       str2ps
  1356. +00000000 T _str_setup           libisode       str2ps
  1357. +00000000 T _str2qb              libisode       str2qb
  1358. +00000000 T _strb2bitstr         libisode       strb2bitstr
  1359. +00000000 T _strb2int            libisode       strb2int
  1360. +00000000 T _time2prim           libisode       time2prim
  1361. +00000000 T _time2str            libisode       time2str
  1362. +00000000 T _tm2ut               libisode       tm2ut
  1363. +00000000 T _ts_read             libisode       ts2ps
  1364. +00000000 T _ts_write            libisode       ts2ps
  1365. +00000000 T _ut2tm               libisode       ut2tm
  1366. +00000000 T _uvec_open           libisode       uvec2ps
  1367. +00000000 T _uvec_setup          libisode       uvec2ps
  1368. +00000000 T _ps_get_plen         libisode       uvec2ps
  1369. +00000000 T _SDataRequest        libisode       ssaprovider
  1370. +00000000 T _SSendRequest        libisode       ssaprovider
  1371. +00000000 T _SWriteRequest       libisode       ssaprovider
  1372. +00000000 T _SDataRequestAux     libisode       ssaprovider
  1373. +00000000 T _SReadRequest        libisode       ssaprovider
  1374. +00000000 T _SDoCollideAux       libisode       ssaprovider
  1375. +00000000 T _SSetIndications     libisode       ssaprovider
  1376. +00000000 T _spkt2sd             libisode       ssaprovider
  1377. +00000000 T _sb2spkt             libisode       ssaprovider
  1378. +00000000 T _ts2sslose           libisode       ssaprovider
  1379. +00000000 T _newsblk             libisode       ssaprovider
  1380. +00000000 T _freesblk            libisode       ssaprovider
  1381. +00000000 T _findsblk            libisode       ssaprovider
  1382. +00000000 T _SErrString          libisode       ssaperror
  1383. +00000000 T _spkt2str            libisode       str2spkt
  1384. +00000000 T _str2spkt            libisode       str2spkt
  1385. +00000000 T _spkt2text           libisode       text2spkt
  1386. +00000000 T _text2spkt           libisode       text2spkt
  1387. +00000000 T _spkt2tsdu           libisode       tsdu2spkt
  1388. +00000000 T _tsdu2spkt           libisode       tsdu2spkt
  1389. +00000000 T _newspkt             libisode       tsdu2spkt
  1390. +00000000 T _freespkt            libisode       tsdu2spkt
  1391. +00000000 T _SExec               libisode       ssapexec
  1392. +00000000 T _SInit               libisode       ssaprespond
  1393. +00000000 T _SConnResponse       libisode       ssaprespond
  1394. +00000000 T _SAsynConnRequest    libisode       ssapinitiate
  1395. +00000000 T _SAsynRetryRequest   libisode       ssapinitiate
  1396. +00000000 T _SAsynNextRequest    libisode       ssapinitiate
  1397. +00000000 T _SExpdRequest        libisode       ssapexpd
  1398. +00000000 T _STypedRequest       libisode       ssaptyped
  1399. +00000000 T _SCapdRequest        libisode       ssapcapd1
  1400. +00000000 T _SCapdResponse       libisode       ssapcapd2
  1401. +00000000 T _SGTokenRequest      libisode       ssaptoken
  1402. +00000000 T _SPTokenRequest      libisode       ssaptoken
  1403. +00000000 T _SGControlRequest    libisode       ssapactivity
  1404. +00000000 T _SActStartRequest    libisode       ssapactivity
  1405. +00000000 T _SActResumeRequest   libisode       ssapactivity
  1406. +00000000 T _SActIntrRequest     libisode       ssapactivity
  1407. +00000000 T _SActIntrResponse    libisode       ssapactivity
  1408. +00000000 T _SActDiscRequest     libisode       ssapactivity
  1409. +00000000 T _SActDiscResponse    libisode       ssapactivity
  1410. +00000000 T _SActEndRequest      libisode       ssapactivity
  1411. +00000000 T _SActEndResponse     libisode       ssapactivity
  1412. +00000000 T _SMajSyncRequest     libisode       ssapmajor1
  1413. +00000000 T _SMajSyncRequestAux  libisode       ssapmajor1
  1414. +00000000 T _SMajSyncResponse    libisode       ssapmajor2
  1415. +00000000 T _SMajSyncResponseAux libisode       ssapmajor2
  1416. +00000000 T _SMinSyncRequest     libisode       ssapminor1
  1417. +00000000 T _SMinSyncResponse    libisode       ssapminor2
  1418. +00000000 T _SReSyncRequest      libisode       ssapresync1
  1419. +00000000 T _SReSyncResponse     libisode       ssapresync2
  1420. +00000000 T _SUAbortRequest      libisode       ssapabort
  1421. +00000000 T _SUReportRequest     libisode       ssapreport
  1422. +00000000 T _SRelRequest         libisode       ssaprelease1
  1423. +00000000 T _SRelRetryRequest    libisode       ssaprelease1
  1424. +00000000 T _SRelResponse        libisode       ssaprelease2
  1425. +00000000 T _SWriteRequestAux    libisode       ssapwrite
  1426. +00000000 T _SDoActivityAux      libisode       ssapactchk
  1427. +00000000 T _SSelectMask         libisode       ssapselect
  1428. +00000000 T _spktlose            libisode       ssaplose
  1429. +00000000 T _ssaplose            libisode       ssaplose
  1430. +00000000 T _TDataRequest        libisode       tsaprovider
  1431. +00000000 T _TExpdRequest        libisode       tsaprovider
  1432. +00000000 T _TWriteRequest       libisode       tsaprovider
  1433. +00000000 T _TReadRequest        libisode       tsaprovider
  1434. +00000000 T _TDiscRequest        libisode       tsaprovider
  1435. +00000000 T _TSetIndications     libisode       tsaprovider
  1436. +00000000 T _TSelectMask         libisode       tsaprovider
  1437. +00000000 T _newtblk             libisode       tsaprovider
  1438. +00000000 T _freetblk            libisode       tsaprovider
  1439. +00000000 T _findtblk            libisode       tsaprovider
  1440. +00000000 T _copyTSAPaddrX       libisode       tsaprovider
  1441. +00000000 T _copyTSAPaddrY       libisode       tsaprovider
  1442. +00000000 T _TErrString          libisode       tsaperror
  1443. +00000000 T _TSaveState          libisode       tsapstate
  1444. +00000000 T _TRestoreState       libisode       tsapstate
  1445. +00000000 T _fd2tpkt             libisode       fd2tpkt
  1446. +00000000 T _tpkt2fd             libisode       fd2tpkt
  1447. +00000000 T _newtpkt             libisode       fd2tpkt
  1448. +00000000 T _freetpkt            libisode       fd2tpkt
  1449. +00000000 T _tpkt2str            libisode       str2tpkt
  1450. +00000000 T _str2tpkt            libisode       str2tpkt
  1451. +00000000 T _tpkt2text           libisode       text2tpkt
  1452. +00000000 T _text2tpkt           libisode       text2tpkt
  1453. +00000000 T _TInit               libisode       tsaprespond
  1454. +00000000 T _TConnResponse       libisode       tsaprespond
  1455. +00000000 T _TAsynConnRequest    libisode       tsapinitiate
  1456. +00000000 T _TAsynRetryRequest   libisode       tsapinitiate
  1457. +00000000 T _TAsynNextRequest    libisode       tsapinitiate
  1458. +00000000 T _ta2norm             libisode       tsapinitiate
  1459. +00000000 T _tpktlose            libisode       tsaplose
  1460. +00000000 T _tsaplose            libisode       tsaplose
  1461. +00000000 T _TNetListen          libisode       tsaplisten
  1462. +00000000 T _TNetListenAux       libisode       tsaplisten
  1463. +00000000 T _TNetUnique          libisode       tsaplisten
  1464. +00000000 T _TNetAcceptAux       libisode       tsaplisten
  1465. +00000000 T _TGetReadMask        libisode       tsaplisten
  1466. +00000000 T _TGetWriteMask       libisode       tsaplisten
  1467. +00000000 T _TNetCheck           libisode       tsaplisten
  1468. +00000000 T _TNetClose           libisode       tsaplisten
  1469. +00000000 T _TNetFork            libisode       tsaplisten
  1470. +00000000 T _TSetQueuesOK        libisode       tsaplisten
  1471. +00000000 T __tsapmgmt_stub      libisode       tsapmgmt
  1472. +00000000 T _TSelectOctets       libisode       tsapmisc
  1473. +00000000 T _TGetAddresses       libisode       tsapmisc
  1474. +00000000 T _tp0write            libisode       tp0ts
  1475. +00000000 T _tp0init             libisode       tp0ts
  1476. +00000000 T _tcpopen             libisode       ts2tcp
  1477. +00000000 T _tcpsave             libisode       ts2tcp
  1478. +00000000 T _tcprestore          libisode       ts2tcp
  1479. +00000000 T _TTService           libisode       ts2tcp
  1480. +00000000 T __ts2x25_stub        libisode       ts2x25
  1481. +00000000 T __ts2bsd_stub        libisode       ts2bsd
  1482. +00000000 T __ts2sunlink_stub    libisode       ts2sunlink
  1483. +00000000 T __ts2tli_stub        libisode       ts2tli
  1484. +00000000 T __ts2xti_stub        libisode       ts2xti
  1485. +00000000 T __closedir_stub      libisode       closedir
  1486. +00000000 T __getdents_stub      libisode       getdents
  1487. +00000000 T __opendir_stub       libisode       opendir
  1488. +00000000 T __readdir_stub       libisode       readdir
  1489. +00000000 T __rewinddir_stub     libisode       rewinddir
  1490. +00000000 T __seekdir_stub       libisode       seekdir
  1491. +00000000 T __telldir_stub       libisode       telldir
  1492. +00000000 T __getcwd             libisode       getcwd
  1493. +00000000 T __scandir_stub       libisode       scandir
  1494. +00000000 T __alphasort_stub     libisode       scandir
  1495. +00000000 T _ll_open             libisode       logger
  1496. +00000000 T _ll_close            libisode       logger
  1497. +00000000 T _ll_log              libisode       logger
  1498. +00000000 T __ll_log             libisode       logger
  1499. +00000000 T _ll_hdinit           libisode       logger
  1500. +00000000 T _ll_dbinit           libisode       logger
  1501. +00000000 T _ll_printf           libisode       logger
  1502. +00000000 T _ll_sync             libisode       logger
  1503. +00000000 T _ll_preset           libisode       logger
  1504. +00000000 T _ll_check            libisode       logger
  1505. +00000000 T _ll_defmhdr          libisode       logger
  1506. +00000000 T _ll_setmhdr          libisode       logger
  1507. +00000000 T _selsocket           libisode       select
  1508. +00000000 T _set_check_fd        libisode       select
  1509. +00000000 T _xselect             libisode       select
  1510. +00000000 T _asprintf            libisode       asprintf
  1511. +00000000 T __asprintf           libisode       asprintf
  1512. +00000000 T _explode             libisode       explode
  1513. +00000000 T _implode             libisode       implode
  1514. +00000000 T __isodefile          libisode       isofiles
  1515. +00000000 T _getlocalhost        libisode       isohost
  1516. +00000000 T _sel2str             libisode       sel2str
  1517. +00000000 T _sys_errname         libisode       serror
  1518. +00000000 T _sprintb             libisode       sprintb
  1519. +00000000 T _str2elem            libisode       str2elem
  1520. +00000000 T _str2sel             libisode       str2sel
  1521. +00000000 T _str2vecX            libisode       str2vec
  1522. +00000000 T _isodesetailor       libisode       tailor
  1523. +00000000 T _isodetailor         libisode       tailor
  1524. +00000000 T _isodesetvar         libisode       tailor
  1525. +00000000 T _isodexport          libisode       tailor
  1526. +00000000 T _baduser             libisode       baduser
  1527. +00000000 T _chkpassword         libisode       chkpassword
  1528. +00000000 T _getpassword         libisode       getpassword
  1529. +00000000 T _cmd_srch            libisode       cmd_srch
  1530. +00000000 T _lexequ              libisode       lexequ
  1531. +00000000 T _lexnequ             libisode       lexnequ
  1532. +00000000 T _log_tai             libisode       log_tai
  1533. +00000000 T _rcmd_srch           libisode       rcmd_srch
  1534. +00000000 T _set_smalloc_handler libisode       smalloc
  1535. +00000000 T _smalloc             libisode       smalloc
  1536. +00000000 T _sstr2arg            libisode       sstr2arg
  1537. +00000000 T _strdup_stub         libisode       strdup
  1538. +00000000 T _setisoservent       libisode       isoservent
  1539. +00000000 T _endisoservent       libisode       isoservent
  1540. +00000000 T _getisoservent       libisode       isoservent
  1541. +00000000 T _getisoserventbyname libisode       servbyname
  1542. +00000000 T _getisoserventbyport libisode       servbyport
  1543. +00000000 T _getisoserventbyselector libisode       servbysel
  1544. +00000000 T _macro2str           libisode       isoaddrs
  1545. +00000000 T _str2paddr           libisode       isoaddrs
  1546. +00000000 T _macro2comm          libisode       isoaddrs
  1547. +00000000 T __paddr2str          libisode       isoaddrs
  1548. +00000000 T _str2saddr           libisode       str2saddr
  1549. +00000000 T _str2taddr           libisode       str2taddr
  1550. +00000000 T _saddr2str           libisode       saddr2str
  1551. +00000000 T _taddr2str           libisode       taddr2str
  1552. +00000000 T _na2norm             libisode       na2norm
  1553. +00000000 T _norm2na             libisode       norm2na
  1554. +00000000 T _na2str              libisode       na2str
  1555. +00000000 T _pa2str              libisode       pa2str
  1556. +00000000 T _nsap_addr_cmp       libisode       nsapcmp
  1557. +00000000 T _tsap_addr_cmp       libisode       nsapcmp
  1558. +00000000 T _ssap_addr_cmp       libisode       nsapcmp
  1559. +00000000 T _psap_addr_cmp       libisode       nsapcmp
  1560. +00000000 T _start_tcp_client    libisode       internet
  1561. +00000000 T _start_tcp_server    libisode       internet
  1562. +00000000 T _join_tcp_client     libisode       internet
  1563. +00000000 T _join_tcp_server     libisode       internet
  1564. +00000000 T _close_tcp_socket    libisode       internet
  1565. +00000000 T _gethostbystring     libisode       internet
  1566. +00000000 T _start_udp_server    libisode       dgram
  1567. +00000000 T _join_dgram_aux      libisode       dgram
  1568. +00000000 T _read_dgram_socket   libisode       dgram
  1569. +00000000 T _hack_dgram_socket   libisode       dgram
  1570. +00000000 T _write_dgram_socket  libisode       dgram
  1571. +00000000 T _close_dgram_socket  libisode       dgram
  1572. +00000000 T _select_dgram_socket libisode       dgram
  1573. +00000000 T _check_dgram_socket  libisode       dgram
  1574. +00000000 T __camtec_sunlink_stub libisode       camtec
  1575. +00000000 T __sunlink_stub       libisode       sunlink
  1576. +00000000 T __ubcx25_stub        libisode       ubcx25
  1577. +00000000 T __hpuxx25_stub       libisode       hpuxx25
  1578. +00000000 T __ultrix25_stub      libisode       ultrix25
  1579. +00000000 T __x25addr_stub       libisode       x25addr
  1580. +00000000 T _setisonsapsnpa      libisode       isonsapsnpa
  1581. +00000000 T _endisonsapsnpa      libisode       isonsapsnpa
  1582. +00000000 T _getisonsapsnpa      libisode       isonsapsnpa
  1583. +00000000 T _getisosnpa          libisode       isonsapsnpa
  1584. +00000000 T _getnsapinfo         libisode       isonsapsnpa
  1585. +00000000 T _char2bcd            libisode       char2bcd
  1586. +00000000 T _bcd2char            libisode       bcd2char
  1587. +00000000 T _grab_pe1            libdsap        IF_tables
  1588. +00000000 T _grab_pe2            libdsap        IF_tables
  1589. +00000000 T _grab_pe3            libdsap        IF_tables
  1590. +00000000 T _dec_av1             libdsap        IF_tables
  1591. +00000000 T _dec_at              libdsap        IF_tables
  1592. +00000000 T _free_at_dummy       libdsap        IF_tables
  1593. +00000000 T _encode_IF_AttributeType libdsap        IF_tables
  1594. +00000000 T _decode_IF_AttributeType libdsap        IF_tables
  1595. +00000000 T _encode_IF_AttributeValue libdsap        IF_tables
  1596. +00000000 T _decode_IF_AttributeValue libdsap        IF_tables
  1597. +00000000 T _encode_IF_DistinguishedName libdsap        IF_tables
  1598. +00000000 T _decode_IF_DistinguishedName libdsap        IF_tables
  1599. +00000000 T _encode_IF_Name      libdsap        IF_tables
  1600. +00000000 T _decode_IF_Name      libdsap        IF_tables
  1601. +00000000 T _enc_ipa             libdsap        DO_tables
  1602. +00000000 T _dec_ipa             libdsap        DO_tables
  1603. +00000000 T _fr_ipa              libdsap        DO_tables
  1604. +00000000 T _int2strb_alloc      libdsap        DAS_tables
  1605. +00000000 T _encode_DAS_TokenToSign libdsap        DAS_tables
  1606. +00000000 T _encode_DAS_ReadArgumentData libdsap        DAS_tables
  1607. +00000000 T _encode_DAS_CompareArgumentData libdsap        DAS_tables
  1608. +00000000 T _encode_DAS_ListArgumentData libdsap        DAS_tables
  1609. +00000000 T _encode_DAS_SearchArgumentData libdsap        DAS_tables
  1610. +00000000 T _encode_DAS_AddEntryArgumentData libdsap        DAS_tables
  1611. +00000000 T _encode_DAS_RemoveEntryArgumentData libdsap        DAS_tables
  1612. +00000000 T _encode_DAS_ModifyEntryArgumentData libdsap        DAS_tables
  1613. +00000000 T _encode_DAS_ModifyRDNArgumentData libdsap        DAS_tables
  1614. +00000000 T _substring_encode    libdsap        asn_ext
  1615. +00000000 T _substring_decode    libdsap        asn_ext
  1616. +00000000 T _substring_free      libdsap        asn_ext
  1617. +00000000 T _treestruct_encode   libdsap        asn_ext
  1618. +00000000 T _treestruct_decode   libdsap        asn_ext
  1619. +00000000 T _EDB_encode          libdsap        asn_ext
  1620. +00000000 T _EDB_decode_force    libdsap        asn_ext
  1621. +00000000 T _EDB_decode          libdsap        asn_ext
  1622. +00000000 T _EDB_free            libdsap        asn_ext
  1623. +00000000 T _acl_info_free       libdsap        acl
  1624. +00000000 T _acl_cmp             libdsap        acl
  1625. +00000000 T _acl_info_cmp        libdsap        acl
  1626. +00000000 T _acl_info_new        libdsap        acl
  1627. +00000000 T _acl_default         libdsap        acl
  1628. +00000000 T _get_default_acl     libdsap        acl
  1629. +00000000 T _set_default_acl     libdsap        acl
  1630. +00000000 T _test_acl_default    libdsap        acl
  1631. +00000000 T _acl_syntax          libdsap        acl
  1632. +00000000 T _add_attribute_syntax libdsap        attrv
  1633. +00000000 T _set_attribute_syntax libdsap        attrv
  1634. +00000000 T _set_av_pe_print     libdsap        attrv
  1635. +00000000 T _set_av_printer      libdsap        attrv
  1636. +00000000 T _modify_av_printer   libdsap        attrv
  1637. +00000000 T _split_attr          libdsap        attrv
  1638. +00000000 T _approxfn            libdsap        attrv
  1639. +00000000 T _syntax2str          libdsap        attrv
  1640. +00000000 T _str2syntax          libdsap        attrv
  1641. +00000000 T _get_syntax_table    libdsap        attrv
  1642. +00000000 T _AttrV_free          libdsap        attrv
  1643. +00000000 T _AttrV_free_aux      libdsap        attrv
  1644. +00000000 T _grab_pe             libdsap        attrv
  1645. +00000000 T _AttrV_decode        libdsap        attrv
  1646. +00000000 T _str_at2AttrV_aux    libdsap        attrv
  1647. +00000000 T _str_at2AttrV        libdsap        attrv
  1648. +00000000 T _str2AttrV           libdsap        attrv
  1649. +00000000 T _str2AttrV_aux       libdsap        attrv
  1650. +00000000 T _AttrV_cpy           libdsap        attrv
  1651. +00000000 T _AttrV_cpy_aux       libdsap        attrv
  1652. +00000000 T _AttrV_cpy_enc       libdsap        attrv
  1653. +00000000 T _rdn_cmp             libdsap        attrv
  1654. +00000000 T _rdn_cmp_reverse     libdsap        attrv
  1655. +00000000 T _AttrV_cmp           libdsap        attrv
  1656. +00000000 T _av_cmp_fn           libdsap        attrv
  1657. +00000000 T _AttrV_print         libdsap        attrv
  1658. +00000000 T _get_ca_ref          libdsap        ca
  1659. +00000000 T _cha_loopdetected    libdsap        ca
  1660. +00000000 T _ti_is_elem          libdsap        ca
  1661. +00000000 T _ti_cpy              libdsap        ca
  1662. +00000000 T _dn_seq_free         libdsap        dn_seq
  1663. +00000000 T _dn_seq_cpy          libdsap        dn_seq
  1664. +00000000 T _check_dnseq         libdsap        dn_seq
  1665. +00000000 T _dn_seq_cmp          libdsap        dn_seq
  1666. +00000000 T _check_dnseq_prefix  libdsap        dn_seq
  1667. +00000000 T _dn_seq_print        libdsap        dn_seq
  1668. +00000000 T _str2dnseq           libdsap        dn_seq
  1669. +00000000 T _dn_in_dnseq         libdsap        dn_seq
  1670. +00000000 T _dn_seq_push         libdsap        dn_seq
  1671. +00000000 T _dn_seq_pop          libdsap        dn_seq
  1672. +00000000 T _de_print            libdsap        ds_error
  1673. +00000000 T _ds_error            libdsap        ds_error
  1674. +00000000 T _log_ds_error        libdsap        ds_error
  1675. +00000000 T _ds_error_free       libdsap        ds_error
  1676. +00000000 T _ds_bind_error_aux   libdsap        ds_error
  1677. +00000000 T _ds_bind_error       libdsap        ds_error
  1678. +00000000 T _print_bind_error    libdsap        ds_error
  1679. +00000000 T _edbinfo_syntax      libdsap        dsa_info
  1680. +00000000 T _entryinfo_comp_free libdsap        entryinfo
  1681. +00000000 T _entryinfo_free      libdsap        entryinfo
  1682. +00000000 T _entryinfo_cpy       libdsap        entryinfo
  1683. +00000000 T _entryinfo_append    libdsap        entryinfo
  1684. +00000000 T _entryinfo_merge     libdsap        entryinfo
  1685. +00000000 T _entryinfo_print     libdsap        entryinfo
  1686. +00000000 T _filter_free         libdsap        filter
  1687. +00000000 T _filter_append       libdsap        filter
  1688. +00000000 T _strfilter           libdsap        filter
  1689. +00000000 T _ocfilter            libdsap        filter
  1690. +00000000 T _joinfilter          libdsap        filter
  1691. +00000000 T _fi_print            libdsap        filter
  1692. +00000000 T _print_filter        libdsap        filter
  1693. +00000000 T _load_oid_table      libdsap        oid
  1694. +00000000 T _add_entry_aux       libdsap        oid
  1695. +00000000 T _get_oid             libdsap        oid
  1696. +00000000 T _name2attr           libdsap        oid
  1697. +00000000 T _set_heap            libdsap        oid
  1698. +00000000 T _oid2attr            libdsap        oid
  1699. +00000000 T _name2oc             libdsap        oid
  1700. +00000000 T _oid2oc              libdsap        oid
  1701. +00000000 T _attr2name           libdsap        oid
  1702. +00000000 T _oc2name             libdsap        oid
  1703. +00000000 T _oid2name            libdsap        oid
  1704. +00000000 T _name2oid            libdsap        oid
  1705. +00000000 T _oid2pe              libdsap        oid
  1706. +00000000 T _oidprint            libdsap        oid
  1707. +00000000 T _dup_prim2oid        libdsap        oid
  1708. +00000000 T _free_oid_buckets    libdsap        oid
  1709. +00000000 T _oid_syntax          libdsap        oid
  1710. +00000000 T _want_oc_hierarchy   libdsap        oid2
  1711. +00000000 T _load_obj_hier       libdsap        oid2
  1712. +00000000 T _dumpalloid          libdsap        oid2
  1713. +00000000 T _add_oc_macro        libdsap        oid2
  1714. +00000000 T _table_seq_free      libdsap        oid2
  1715. +00000000 T _free_oid_table      libdsap        oid2
  1716. +00000000 T _oid_seq_free        libdsap        oidseq
  1717. +00000000 T _oid_seq_free_aux    libdsap        oidseq
  1718. +00000000 T _oid_seq_merge       libdsap        oidseq
  1719. +00000000 T _oid_seq_cmp         libdsap        oidseq
  1720. +00000000 T _oid_seq_cpy         libdsap        oidseq
  1721. +00000000 T _oid_seq_print       libdsap        oidseq
  1722. +00000000 T _str2oidseq          libdsap        oidseq
  1723. +00000000 T _oc_add              libdsap        oc
  1724. +00000000 T _str2oc              libdsap        oc
  1725. +00000000 T _add_oc_avs          libdsap        oc
  1726. +00000000 T _objectclass_cmp     libdsap        oc
  1727. +00000000 T _check_in_oc         libdsap        oc
  1728. +00000000 T _oc_print            libdsap        oc
  1729. +00000000 T _objectclass_syntax  libdsap        oc
  1730. +00000000 T _parse_error         libdsap        parse_error
  1731. +00000000 T _pe_print            libdsap        pe
  1732. +00000000 T _asn2pe              libdsap        pe
  1733. +00000000 T _show_picture        libdsap        picture
  1734. +00000000 T _exec_print          libdsap        picture
  1735. +00000000 T _hide_picture        libdsap        picture
  1736. +00000000 T _picture_print       libdsap        picture
  1737. +00000000 T _photo_syntax        libdsap        picture
  1738. +00000000 T _psap_free           libdsap        psap
  1739. +00000000 T _psap_cpy            libdsap        psap
  1740. +00000000 T _psap_dup            libdsap        psap
  1741. +00000000 T _psap_syntax         libdsap        psap
  1742. +00000000 T _tree_struct_free    libdsap        tree_struct
  1743. +00000000 T _schema_syntax       libdsap        tree_struct
  1744. +00000000 T _SkipSpace           libdsap        util
  1745. +00000000 T _StripSpace          libdsap        util
  1746. +00000000 T _StripSpace2         libdsap        util
  1747. +00000000 T _TidyString2         libdsap        util
  1748. +00000000 T _TidyString          libdsap        util
  1749. +00000000 T _test_prim_pe        libdsap        util
  1750. +00000000 T _ps_printf           libdsap        util
  1751. +00000000 T _fatal               libdsap        util
  1752. +00000000 T _pslog               libdsap        util
  1753. +00000000 T _stop_listeners      libdsap        util
  1754. +00000000 T _quipu_pe_cmp        libdsap        util
  1755. +00000000 T _acl_dflt            libdsap        util
  1756. +00000000 T _correlate_search_results libdsap        correlate
  1757. +00000000 T _merge_search_results libdsap        correlate
  1758. +00000000 T _search_result_free  libdsap        correlate
  1759. +00000000 T _standard_syntaxes   libdsap        std_sntx
  1760. +00000000 T _quipu_syntaxes      libdsap        quipu_sntx
  1761. +00000000 T _dflt_attr_file      libdsap        file_print
  1762. +00000000 T _fileattr_print      libdsap        file_print
  1763. +00000000 T _as_write_files      libdsap        file_print
  1764. +00000000 T _grab_filepe         libdsap        file_enc
  1765. +00000000 T _file_decode         libdsap        file_enc
  1766. +00000000 T _fileattr_cpy        libdsap        file_cpy
  1767. +00000000 T _file_cmp            libdsap        file_cpy
  1768. +00000000 T _str2file_aux        libdsap        file_str
  1769. +00000000 T _str2file            libdsap        file_str
  1770. +00000000 T _file_free           libdsap        file_str
  1771. +00000000 T _AttrT_cmp_old       libdsap        attrt_cmp
  1772. +00000000 T _AttrT_decode_aux    libdsap        attrt_dec
  1773. +00000000 T _AttrT_new           libdsap        attrt_new
  1774. +00000000 T _AttrT_cpy           libdsap        attrt_cpy
  1775. +00000000 T _AttrT_print         libdsap        attrt_print
  1776. +00000000 T _as_cmp_comp         libdsap        as_cmp
  1777. +00000000 T _as_cmp              libdsap        as_cmp
  1778. +00000000 T _as_comp_cpy         libdsap        as_cpy
  1779. +00000000 T _as_cpy              libdsap        as_cpy
  1780. +00000000 T _as_delnext          libdsap        as_del
  1781. +00000000 T _as_merge            libdsap        as_merge
  1782. +00000000 T _as_merge_aux        libdsap        as_merge
  1783. +00000000 T _as_fast_merge       libdsap        as_merge
  1784. +00000000 T _as_comp_new         libdsap        as_new
  1785. +00000000 T _as_comp_free        libdsap        as_free
  1786. +00000000 T _as_free             libdsap        as_free
  1787. +00000000 T _as_find_type        libdsap        as_find
  1788. +00000000 T _as_comp_print       libdsap        as_print
  1789. +00000000 T _as_print            libdsap        as_print
  1790. +00000000 T _str2as              libdsap        as_str
  1791. +00000000 T _as_combine          libdsap        as_str
  1792. +00000000 T _avs_cmp             libdsap        avs_cmp
  1793. +00000000 T _avs_comp_cpy        libdsap        avs_cpy
  1794. +00000000 T _avs_cpy             libdsap        avs_cpy
  1795. +00000000 T _avs_cpy_enc         libdsap        avs_cpy
  1796. +00000000 T _avs_delnext         libdsap        avs_del
  1797. +00000000 T _avs_merge           libdsap        avs_merge
  1798. +00000000 T _avs_fast_merge      libdsap        avs_merge
  1799. +00000000 T _avs_comp_fill       libdsap        avs_new
  1800. +00000000 T _avs_comp_new        libdsap        avs_new
  1801. +00000000 T _avs_comp_free       libdsap        avs_free
  1802. +00000000 T _avs_free            libdsap        avs_free
  1803. +00000000 T _avs_print           libdsap        avs_print
  1804. +00000000 T _avs_print_aux       libdsap        avs_print
  1805. +00000000 T _str2avs             libdsap        avs_str
  1806. +00000000 T _fast_str2avs        libdsap        avs_str
  1807. +00000000 T _dn_cmp              libdsap        dn_cmp
  1808. +00000000 T _dn_cmp_prefix       libdsap        dn_cmp
  1809. +00000000 T _dn_order_cmp        libdsap        dn_cmp
  1810. +00000000 T _dn_comp_cpy         libdsap        dn_cpy
  1811. +00000000 T _dn_cpy              libdsap        dn_cpy
  1812. +00000000 T _dn_append           libdsap        dn_append
  1813. +00000000 T _dn_comp_free        libdsap        dn_free
  1814. +00000000 T _dn_free             libdsap        dn_free
  1815. +00000000 T _dn_print            libdsap        dn_print
  1816. +00000000 T _dn_rfc_print        libdsap        dn_print
  1817. +00000000 T _ufn_dn_print        libdsap        dn_print
  1818. +00000000 T _ufn_dn_print_aux    libdsap        dn_print
  1819. +00000000 T _ufn_rdn_print       libdsap        dn_print
  1820. +00000000 T _dn2str              libdsap        dn_print
  1821. +00000000 T _dn2ufn              libdsap        dn_print
  1822. +00000000 T _dn2rfc              libdsap        dn_print
  1823. +00000000 T _str2dn              libdsap        dn_str
  1824. +00000000 T _str2dn_aux          libdsap        dn_str
  1825. +00000000 T _str2dnX             libdsap        dn_str
  1826. +00000000 T _dn_dec              libdsap        dn_str
  1827. +00000000 T _dn_enc              libdsap        dn_str
  1828. +00000000 T _dn_syntax           libdsap        dn_str
  1829. +00000000 T _dn_comp_new         libdsap        dn_new
  1830. +00000000 T _rdn_cmp_comp        libdsap        rdn_cmp
  1831. +00000000 T _rdn_comp_cpy        libdsap        rdn_cpy
  1832. +00000000 T _rdn_cpy             libdsap        rdn_cpy
  1833. +00000000 T _rdn_comp_new        libdsap        rdn_new
  1834. +00000000 T _rdn_comp_free       libdsap        rdn_free
  1835. +00000000 T _rdn_free            libdsap        rdn_free
  1836. +00000000 T _rdn_comp_print      libdsap        rdn_print
  1837. +00000000 T _rdn_print           libdsap        rdn_print
  1838. +00000000 T _str2rdn_aux         libdsap        rdn_str
  1839. +00000000 T _str2rdn             libdsap        rdn_str
  1840. +00000000 T _rdn_merge           libdsap        rdn_merge
  1841. +00000000 T _utcprint            libdsap        time
  1842. +00000000 T _time_syntax         libdsap        time
  1843. +00000000 T _integer_syntax      libdsap        integer
  1844. +00000000 T _boolean_syntax      libdsap        boolean
  1845. +00000000 T _iso8859print        libdsap        string
  1846. +00000000 T _r_octenc            libdsap        string
  1847. +00000000 T _check_3166          libdsap        string
  1848. +00000000 T _r_octsdec           libdsap        string
  1849. +00000000 T _check_print_string  libdsap        string
  1850. +00000000 T _r_octparse          libdsap        string
  1851. +00000000 T _octparse            libdsap        string
  1852. +00000000 T _prtparse            libdsap        string
  1853. +00000000 T _cryptstring         libdsap        string
  1854. +00000000 T _cryptparse          libdsap        string
  1855. +00000000 T _sfree               libdsap        string
  1856. +00000000 T _pstrcmp             libdsap        string
  1857. +00000000 T _passwdcmp           libdsap        string
  1858. +00000000 T _telcmp              libdsap        string
  1859. +00000000 T _telstrlen           libdsap        string
  1860. +00000000 T _telncmp             libdsap        string
  1861. +00000000 T _strprint            libdsap        string
  1862. +00000000 T _cryptprint          libdsap        string
  1863. +00000000 T _r_octprint          libdsap        string
  1864. +00000000 T _octprint            libdsap        string
  1865. +00000000 T _qb_cmp              libdsap        string
  1866. +00000000 T _nbcmp               libdsap        string
  1867. +00000000 T _qb_cpy              libdsap        string
  1868. +00000000 T _part_print          libdsap        string
  1869. +00000000 T _part_parse          libdsap        string
  1870. +00000000 T _case_exact_match    libdsap        string
  1871. +00000000 T _approx_string       libdsap        string
  1872. +00000000 T _sub_string          libdsap        string
  1873. +00000000 T _telephone_match     libdsap        string
  1874. +00000000 T _string_syntaxes     libdsap        string
  1875. +00000000 T _mailbox_syntax      libdsap        mailbox
  1876. +00000000 T _fax_syntax          libdsap        fax
  1877. +00000000 T _post_syntax         libdsap        post
  1878. +00000000 T _telex_syntax        libdsap        telex
  1879. +00000000 T _teletex_syntax      libdsap        teletex
  1880. +00000000 T _pref_deliv_syntax   libdsap        pdm
  1881. +00000000 T _guide_syntax        libdsap        guide
  1882. +00000000 T _first_word          libdsap        soundex
  1883. +00000000 T _next_word           libdsap        soundex
  1884. +00000000 T _soundex             libdsap        soundex
  1885. +00000000 T _soundex_cmp         libdsap        soundex
  1886. +00000000 T _soundex_match       libdsap        soundex
  1887. +00000000 T _dsap_tai            libdsap        sys_tai
  1888. +00000000 T _dsap_init           libdsap        sys_init
  1889. +00000000 T _dsap_tai_init       libdsap        tai_init
  1890. +00000000 T _tai_string          libdsap        tai_init
  1891. +00000000 T _tai_args            libdsap        tai_args
  1892. +00000000 T _cert_enc            libdsap        certificate
  1893. +00000000 T _cert_dec            libdsap        certificate
  1894. +00000000 T _alg_cpy             libdsap        certificate
  1895. +00000000 T _cert_cpy            libdsap        certificate
  1896. +00000000 T _cert_free           libdsap        certificate
  1897. +00000000 T _str2alg             libdsap        certificate
  1898. +00000000 T _str2encrypted       libdsap        certificate
  1899. +00000000 T _str2cert            libdsap        certificate
  1900. +00000000 T _print_algid         libdsap        certificate
  1901. +00000000 T _print_encrypted     libdsap        certificate
  1902. +00000000 T _printcert           libdsap        certificate
  1903. +00000000 T _cert_cmp            libdsap        certificate
  1904. +00000000 T _certificate_syntax  libdsap        certificate
  1905. +00000000 T _cpair_enc           libdsap        cpair
  1906. +00000000 T _cpair_dec           libdsap        cpair
  1907. +00000000 T _str2cpair           libdsap        cpair
  1908. +00000000 T _printcpair          libdsap        cpair
  1909. +00000000 T _cpair_cpy           libdsap        cpair
  1910. +00000000 T _cpair_cmp           libdsap        cpair
  1911. +00000000 T _cpair_free          libdsap        cpair
  1912. +00000000 T _certificate_pair_syntax libdsap        cpair
  1913. +00000000 T _hash2str            libdsap        protected
  1914. +00000000 T _hash_passwd         libdsap        protected
  1915. +00000000 T _check_guard         libdsap        protected
  1916. +00000000 T _protected_password_syntax libdsap        protected
  1917. +00000000 T _subord_cpy          libdsap        cache
  1918. +00000000 T _cache_list          libdsap        cache
  1919. +00000000 T _delete_list_cache   libdsap        cache
  1920. +00000000 T _find_list_cache     libdsap        cache
  1921. +00000000 T _free_all_list_cache libdsap        cache
  1922. +00000000 T _cache_entry         libdsap        cache
  1923. +00000000 T _delete_cache        libdsap        cache
  1924. +00000000 T _local_find_entry    libdsap        cache
  1925. +00000000 T _local_find_entry_aux libdsap        cache
  1926. +00000000 T _get_copy_dn         libdsap        cache
  1927. +00000000 T _unravel_attribute   libdsap        cache
  1928. +00000000 T _check_schema        libdsap        cache
  1929. +00000000 T _new_version         libdsap        cache
  1930. +00000000 T _directory_free      libdsap        entry
  1931. +00000000 T _entry_free          libdsap        entry
  1932. +00000000 T _entry_replace       libdsap        entry
  1933. +00000000 T _entry_cpy           libdsap        entry
  1934. +00000000 T _get_default_entry   libdsap        entry
  1935. +00000000 T _check_known_oids    libdsap        entry
  1936. +00000000 T _entryrdn_cmp        libdsap        entry
  1937. +00000000 T _entry_cmp           libdsap        entry
  1938. +00000000 T _free_phylinebuf     libdsap        parse
  1939. +00000000 T _getline             libdsap        parse
  1940. +00000000 T _getnextline         libdsap        parse
  1941. +00000000 T _unesc_cont          libdsap        parse
  1942. +00000000 T _fpwr_esc            libdsap        parse
  1943. +00000000 T _pswr_esc            libdsap        parse
  1944. +00000000 T _cnt_escp            libdsap        parse
  1945. +00000000 T _srealloc            libdsap        parse
  1946. +00000000 T _get_attributes_aux  libdsap        parse
  1947. +00000000 T _get_attributes      libdsap        parse
  1948. +00000000 T _get_entry_aux       libdsap        parse
  1949. +00000000 T _get_entry           libdsap        parse
  1950. +00000000 T _new_constructor     libdsap        parse
  1951. +00000000 T _make_path           libdsap        parse
  1952. +00000000 T _aet_match           libdsap        ufn_aet
  1953. +00000000 T _DNS_append          libdsap        ufn_parse
  1954. +00000000 T _dnSelect            libdsap        ufn_parse
  1955. +00000000 T _ufn_search          libdsap        ufn_parse
  1956. +00000000 T _read_envlist        libdsap        ufn_parse
  1957. +00000000 T _ufn_match           libdsap        ufn_parse
  1958. +00000000 T _ufn_init            libdsap        ufn_parse
  1959. +00000000 T _set_lookup_ufn      libdsap        aetufn
  1960. +00000000 T _set_lookup_dap      libdsap        aetdap
  1961. +00000000 T _asnstr2pe           libdsap        nrs_info
  1962. +00000000 T _nrs_info_syntax     libdsap        nrs_info
  1963. +00000000 T _setAttributeLine    libdsap        inherit
  1964. +00000000 T _nextAttributeLine   libdsap        inherit
  1965. +00000000 T _inherit_syntax      libdsap        inherit
  1966. +00000000 T _audio_print         libdsap        audio
  1967. +00000000 T _audio_syntax        libdsap        audio
  1968. +00000000 T _reset_arg           libdsap        cstrings
  1969. +00000000 T _print_arg_error     libdsap        cstrings
  1970. +00000000 T _test_arg            libdsap        cstrings
  1971. +00000000 T _set_default_service libdsap        service
  1972. +00000000 T _get_default_service libdsap        service
  1973. +00000000 T _service_control     libdsap        service
  1974. +00000000 T _do_service_control  libdsap        service
  1975. +00000000 T _shuffle_up          libdsap        service
  1976. +00000000 T _new_service         libdsap        service
  1977. +00000000 T _set_sequence        libdsap        service
  1978. +00000000 T _unset_sequence      libdsap        service
  1979. +00000000 T _add_sequence        libdsap        service
  1980. +00000000 T _sequence_dn         libdsap        service
  1981. +00000000 T _show_sequence       libdsap        service
  1982. +00000000 T _check_security_parms libdsap        security
  1983. +00000000 T _cilist_syntax       libdsap        cilist
  1984. +00000000 T _str2permission      libdsap        policy
  1985. +00000000 T _subords_free        libdsap        ds_ext
  1986. +00000000 T _ems_free            libdsap        ds_ext
  1987. +00000000 T _aps_free            libdsap        ds_ext
  1988. +00000000 T _crefs_free          libdsap        ds_ext
  1989. +00000000 T _qap_cpy             libdsap        ap
  1990. +00000000 T _ap_syntax           libdsap        ap
  1991. +00000000 T _avl_insert          libdsap        turbo_avl
  1992. +00000000 T _avl_delete          libdsap        turbo_avl
  1993. +00000000 T _avl_inapply         libdsap        turbo_avl
  1994. +00000000 T _avl_postapply       libdsap        turbo_avl
  1995. +00000000 T _avl_preapply        libdsap        turbo_avl
  1996. +00000000 T _avl_apply           libdsap        turbo_avl
  1997. +00000000 T _avl_prefixapply     libdsap        turbo_avl
  1998. +00000000 T _avl_free            libdsap        turbo_avl
  1999. +00000000 T _avl_find            libdsap        turbo_avl
  2000. +00000000 T _avl_getfirst        libdsap        turbo_avl
  2001. +00000000 T _avl_getnext         libdsap        turbo_avl
  2002. +00000000 T _avl_dup_error       libdsap        turbo_avl
  2003. +00000000 T _strrev              libdsap        turbo_index
  2004. +00000000 T _index_soundex_cmp   libdsap        turbo_index
  2005. +00000000 T _index_soundex_prefix libdsap        turbo_index
  2006. +00000000 T _substring_prefix_cmp libdsap        turbo_index
  2007. +00000000 T _substring_prefix_tel_cmp libdsap        turbo_index
  2008. +00000000 T _substring_prefix_case_cmp libdsap        turbo_index
  2009. +00000000 T _indexav_cmp         libdsap        turbo_index
  2010. +00000000 T _new_indexnode       libdsap        turbo_index
  2011. +00000000 T _idn_cmp             libdsap        turbo_index
  2012. +00000000 T _th_prefix           libdsap        turbo_index
  2013. +00000000 T _turbo_add2index     libdsap        turbo_index
  2014. +00000000 T _turbo_index_delete  libdsap        turbo_index
  2015. +00000000 T _turbo_isoptimized   libdsap        turbo_index
  2016. +00000000 T _turbo_optimize      libdsap        turbo_index
  2017. +00000000 T _index_subtree       libdsap        turbo_index
  2018. +00000000 T _index_siblings      libdsap        turbo_index
  2019. +00000000 T _check_dsa_known_oids libdsap        attribute
  2020. +00000000 T _real_unravel_attribute libdsap        attribute
  2021. +00000000 T _set_inheritance     libdsap        attribute
  2022. +00000000 T _entry_find_type     libdsap        attribute
  2023. +00000000 T _documentStore_syntax libdsap        docstore
  2024. +00000000 T _QoS_syntax          libdsap        qos
  2025. +00000000 T _find_nest           libdsap        attr_sntx
  2026. +00000000 T _str2attrSeq         libdsap        attr_sntx
  2027. +00000000 T _attrSntx_enc        libdsap        attr_sntx
  2028. +00000000 T _attrSntx_dec        libdsap        attr_sntx
  2029. +00000000 T _attribute_syntax    libdsap        attr_sntx
  2030. +00000000 T _decode_t4           libdsap        photo_dec
  2031. +00000000 T _decode_t4_aux       libdsap        photo_dec
  2032. +00000000 T _next_run            libdsap        photo_dec
  2033. +00000000 T _decode_one          libdsap        photo_dec
  2034. +00000000 T _decode_two          libdsap        photo_dec
  2035. +00000000 T _undo_uncompressed_mode libdsap        photo_dec
  2036. +00000000 T _undo_pass_mode      libdsap        photo_dec
  2037. +00000000 T _undo_horiz_mode     libdsap        photo_dec
  2038. +00000000 T _undo_vert_mode      libdsap        photo_dec
  2039. +00000000 T _goto_b1             libdsap        photo_dec
  2040. +00000000 T _put_run             libdsap        photo_dec
  2041. +00000000 T _set_doutput         libdsap        photo_dec
  2042. +00000000 T _flush_doutput       libdsap        photo_dec
  2043. +00000000 T _set_dinput          libdsap        photo_dec
  2044. +00000000 T _get_node            libdsap        photo_build
  2045. +00000000 T _build_trees         libdsap        photo_build
  2046. +00000000 T _add_tree            libdsap        photo_build
  2047. +00000000 T _get_bit             libdsap        photo_util
  2048. +00000000 T _set_bit             libdsap        photo_util
  2049. +00000000 T _clr_bit             libdsap        photo_util
  2050. +00000000 T _photo_start         libdsap        photo_stub
  2051. +00000000 T _photo_end           libdsap        photo_stub
  2052. +00000000 T _photo_black         libdsap        photo_stub
  2053. +00000000 T _photo_white         libdsap        photo_stub
  2054. +00000000 T _photo_line_end      libdsap        photo_stub
  2055. +00000000 T _dsa_control_syntax  libdsap        dsa_control
  2056. +00000000 T _dsa_control_print   libdsap        dsa_control
  2057. +00000000 T _dsa_control_cmp     libdsap        dsa_control
  2058. +00000000 T _dsa_control_free    libdsap        dsa_control
  2059. +00000000 T _str2dsa_control     libdsap        dsa_control
  2060. +00000000 T _optional_dn_free    libdsap        dsa_control
  2061. +00000000 T _quipu_call_syntax   libdsap        dsa_control
  2062. +00000000 T _str2quipu_call      libdsap        dsa_control
  2063. +00000000 T _quipu_call_print    libdsap        dsa_control
  2064. +00000000 T _quipu_call_cpy      libdsap        dsa_control
  2065. +00000000 T _op_list_cpy         libdsap        dsa_control
  2066. +00000000 T _ops_cpy             libdsap        dsa_control
  2067. +00000000 T _chain_list_cpy      libdsap        dsa_control
  2068. +00000000 T _sub_ch_list_cpy     libdsap        dsa_control
  2069. +00000000 T _quipu_call_cmp      libdsap        dsa_control
  2070. +00000000 T _quipu_call_free     libdsap        dsa_control
  2071. +00000000 T _op_list_free        libdsap        dsa_control
  2072. +00000000 T _ops_free            libdsap        dsa_control
  2073. +00000000 T _chain_list_free     libdsap        dsa_control
  2074. +00000000 T _auth_level_free     libdsap        dsa_control
  2075. +00000000 T _use_serv_null       libdsap        osisec-int
  2076. +00000000 T _nullsigned          libdsap        osisec-int
  2077. +00000000 T _nullverify          libdsap        osisec-int
  2078. +00000000 T _null_ckpath         libdsap        osisec-int
  2079. +00000000 T _null_mkpath         libdsap        osisec-int
  2080. +00000000 T _nullencrypted       libdsap        osisec-int
  2081. +00000000 T _nulldecrypted       libdsap        osisec-int
  2082. +00000000 T _nullmknonce         libdsap        osisec-int
  2083. +00000000 T _nullcknonce         libdsap        osisec-int
  2084. +00000000 T _sacl_free           libdsap        searchacl
  2085. +00000000 T _lacl_free           libdsap        searchacl
  2086. +00000000 T _sacl_cmp            libdsap        searchacl
  2087. +00000000 T _sacl_print          libdsap        searchacl
  2088. +00000000 T _str2lacl            libdsap        searchacl
  2089. +00000000 T _lacl_print          libdsap        searchacl
  2090. +00000000 T _sacl_syntax         libdsap        searchacl
  2091. +00000000 T _lacl_syntax         libdsap        searchacl
  2092. +00000000 T _authp_cmp           libdsap        authpolicy
  2093. +00000000 T _authp_print         libdsap        authpolicy
  2094. +00000000 T _authp_syntax        libdsap        authpolicy
  2095. +00000000 T _DspAsynBindReqAux   libdsap        dsapbind1
  2096. +00000000 T _DspAsynBindRequest  libdsap        dsapbind1
  2097. +00000000 T _QspAsynBindReqAux   libdsap        dsapbind1
  2098. +00000000 T _QspAsynBindRequest  libdsap        dsapbind1
  2099. +00000000 T _DspAsynBindRetry    libdsap        dsapbind1
  2100. +00000000 T _QspAsynBindRetry    libdsap        dsapbind1
  2101. +00000000 T _DBindDecode         libdsap        dsapbind1
  2102. +00000000 T _IspAsynBindReqAux   libdsap        dsapbind1
  2103. +00000000 T _IspAsynBindRequest  libdsap        dsapbind1
  2104. +00000000 T _IspAsynBindRetry    libdsap        dsapbind1
  2105. +00000000 T _DBindInit           libdsap        dsapbind2
  2106. +00000000 T _DBindResult         libdsap        dsapbind2
  2107. +00000000 T _DBindError          libdsap        dsapbind2
  2108. +00000000 T _DBindReject         libdsap        dsapbind2
  2109. +00000000 T _select_context      libdsap        dsapcontexts
  2110. +00000000 T _judge_ctxlist       libdsap        dsapcontexts
  2111. +00000000 T _find_ctx_id         libdsap        dsapcontexts
  2112. +00000000 T _check_dap_ctxlist   libdsap        dsapcontexts
  2113. +00000000 T _check_dsp_ctxlist   libdsap        dsapcontexts
  2114. +00000000 T _check_qsp_ctxlist   libdsap        dsapcontexts
  2115. +00000000 T _check_isp_ctxlist   libdsap        dsapcontexts
  2116. +00000000 T _DUnBindRequest      libdsap        dsapunbind1
  2117. +00000000 T _DUnBindRetry        libdsap        dsapunbind1
  2118. +00000000 T _DUnBindAccept       libdsap        dsapunbind2
  2119. +00000000 T _DUnBindReject       libdsap        dsapunbind2
  2120. +00000000 T _DWaitRequest        libdsap        dsapwait
  2121. +00000000 T _DapRespWaitRequest  libdsap        dsapwait
  2122. +00000000 T _DspWaitRequest      libdsap        dsapwait
  2123. +00000000 T _QspWaitRequest      libdsap        dsapwait
  2124. +00000000 T _DapDecodeInvoke     libdsap        dsapwait
  2125. +00000000 T _DspDecodeInvoke     libdsap        dsapwait
  2126. +00000000 T _DspDecodeResult     libdsap        dsapwait
  2127. +00000000 T _QspDecodeInvoke     libdsap        dsapwait
  2128. +00000000 T _QspDecodeResult     libdsap        dsapwait
  2129. +00000000 T _DDecodeError        libdsap        dsapwait
  2130. +00000000 T _DDecodeUnbind       libdsap        dsapwait
  2131. +00000000 T _IspWaitRequest      libdsap        dsapwait
  2132. +00000000 T _IspDecodeInvoke     libdsap        dsapwait
  2133. +00000000 T _IspDecodeResult     libdsap        dsapwait
  2134. +00000000 T _watch_dog_final     libdsap        dsapwait
  2135. +00000000 T _watch_dog           libdsap        dsapwait
  2136. +00000000 T _watch_dog_aux       libdsap        dsapwait
  2137. +00000000 T _watch_dog_reset     libdsap        dsapwait
  2138. +00000000 T _watch_dog_final_reset libdsap        dsapwait
  2139. +00000000 T _DapInvokeRequest    libdsap        dsapinvoke
  2140. +00000000 T _DapEncodeInvoke     libdsap        dsapinvoke
  2141. +00000000 T _DspInvokeRequest    libdsap        dsapinvoke
  2142. +00000000 T _DspEncodeInvoke     libdsap        dsapinvoke
  2143. +00000000 T _QspInvokeRequest    libdsap        dsapinvoke
  2144. +00000000 T _QspEncodeInvoke     libdsap        dsapinvoke
  2145. +00000000 T _IspInvokeRequest    libdsap        dsapinvoke
  2146. +00000000 T _IspEncodeInvoke     libdsap        dsapinvoke
  2147. +00000000 T _DapResultRequest    libdsap        dsapresult
  2148. +00000000 T _DapEncodeResult     libdsap        dsapresult
  2149. +00000000 T _DspResultRequest    libdsap        dsapresult
  2150. +00000000 T _DspEncodeResult     libdsap        dsapresult
  2151. +00000000 T _QspResultRequest    libdsap        dsapresult
  2152. +00000000 T _QspEncodeResult     libdsap        dsapresult
  2153. +00000000 T _IspResultRequest    libdsap        dsapresult
  2154. +00000000 T _IspEncodeResult     libdsap        dsapresult
  2155. +00000000 T _DapErrorRequest     libdsap        dsaperror
  2156. +00000000 T _DspErrorRequest     libdsap        dsaperror
  2157. +00000000 T _QspErrorRequest     libdsap        dsaperror
  2158. +00000000 T _DEncodeError        libdsap        dsaperror
  2159. +00000000 T _IspErrorRequest     libdsap        dsaperror
  2160. +00000000 T _DRejectRequest      libdsap        dsapreject
  2161. +00000000 T _DUAbortRequest      libdsap        dsapabort
  2162. +00000000 T _ronot2dsaplose      libdsap        dsaprovider
  2163. +00000000 T _ros2dsaplose        libdsap        dsaprovider
  2164. +00000000 T _ros2dsapreject      libdsap        dsaprovider
  2165. +00000000 T _dsaplose            libdsap        dsaplose
  2166. +00000000 T _dsapreject          libdsap        dsaplose
  2167. +00000000 T _DapInitWaitRequest  libdsap        dapwait
  2168. +00000000 T _DapDecodeResult     libdsap        dapwait
  2169. +00000000 T _DapDecodeError      libdsap        dapwait
  2170. +00000000 T _ds_bind             libdsap        dapbind
  2171. +00000000 T _secure_ds_bind      libdsap        dapbind
  2172. +00000000 T _dap_bind            libdsap        dapbind
  2173. +00000000 T _DapAsynBindReqAux   libdsap        dapbind
  2174. +00000000 T _DapAsynBindRequest  libdsap        dapbind
  2175. +00000000 T _DapAsynBindRetry    libdsap        dapbind
  2176. +00000000 T _DapBindDecode       libdsap        dapbind
  2177. +00000000 T _ds_unbind           libdsap        dapunbind
  2178. +00000000 T _dap_unbind          libdsap        dapunbind
  2179. +00000000 T _DapUnBindRequest    libdsap        dapunbind
  2180. +00000000 T _DapUnBindRetry      libdsap        dapunbind
  2181. +00000000 T _dap_abandon         libdsap        dapabandon
  2182. +00000000 T _DapAbandon          libdsap        dapabandon
  2183. +00000000 T _dap_addentry        libdsap        dapaddent
  2184. +00000000 T _DapAddEntry         libdsap        dapaddent
  2185. +00000000 T _dap_compare         libdsap        dapcompare
  2186. +00000000 T _DapCompare          libdsap        dapcompare
  2187. +00000000 T _DapInvokeReqAux     libdsap        dapinvoke
  2188. +00000000 T _DapSyncInvokeRequest libdsap        dapinvoke
  2189. +00000000 T _DapIntrInvokeRequest libdsap        dapinvoke
  2190. +00000000 T _DapAsynInvokeRequest libdsap        dapinvoke
  2191. +00000000 T _DapInterrupt        libdsap        dapinvoke
  2192. +00000000 T _pdu_dump_init       libdsap        dapinvoke
  2193. +00000000 T _pdu_dump            libdsap        dapinvoke
  2194. +00000000 T _dap_list            libdsap        daplist
  2195. +00000000 T _DapList             libdsap        daplist
  2196. +00000000 T _dap_modifyentry     libdsap        dapmodent
  2197. +00000000 T _DapModifyEntry      libdsap        dapmodent
  2198. +00000000 T _dap_modifyrdn       libdsap        dapmodrdn
  2199. +00000000 T _DapModifyRDN        libdsap        dapmodrdn
  2200. +00000000 T _dap_read            libdsap        dapread
  2201. +00000000 T _DapRead             libdsap        dapread
  2202. +00000000 T _dap_removeentry     libdsap        daprement
  2203. +00000000 T _DapRemoveEntry      libdsap        daprement
  2204. +00000000 T _dap_search          libdsap        dapsearch
  2205. +00000000 T _DapSearch           libdsap        dapsearch
  2206. +00000000 T _daplose             libdsap        daplose
  2207. +00000000 T _dapreject           libdsap        daplose
  2208. +00000000 T _ronot2daplose       libdsap        daprovider
  2209. +00000000 T _ros2daplose         libdsap        daprovider
  2210. +00000000 T _ros2dapreject       libdsap        daprovider
  2211. +00000000 T _bind_arg_free       libdsap        ds_types
  2212. +00000000 T _op_arg_free         libdsap        ds_types
  2213. +00000000 T _ch_arg_free         libdsap        ds_types
  2214. +00000000 T _ds_arg_free         libdsap        ds_types
  2215. +00000000 T _read_arg_free       libdsap        ds_types
  2216. +00000000 T _compare_arg_free    libdsap        ds_types
  2217. +00000000 T _list_arg_free       libdsap        ds_types
  2218. +00000000 T _search_arg_free     libdsap        ds_types
  2219. +00000000 T _addentry_arg_free   libdsap        ds_types
  2220. +00000000 T _removeentry_arg_free libdsap        ds_types
  2221. +00000000 T _modifyentry_arg_free libdsap        ds_types
  2222. +00000000 T _modifyrdn_arg_free  libdsap        ds_types
  2223. +00000000 T _getedb_arg_free     libdsap        ds_types
  2224. +00000000 T _op_res_free         libdsap        ds_types
  2225. +00000000 T _ch_res_free         libdsap        ds_types
  2226. +00000000 T _ds_res_free         libdsap        ds_types
  2227. +00000000 T _trace_info_free     libdsap        ds_types
  2228. +00000000 T _ca_free             libdsap        ds_types
  2229. +00000000 T _extension_free      libdsap        ds_types
  2230. +00000000 T _cross_refs_free     libdsap        ds_types
  2231. +00000000 T _ds_arg_dup          libdsap        ds_types
  2232. +00000000 T _read_arg_dup        libdsap        ds_types
  2233. +00000000 T _compare_arg_dup     libdsap        ds_types
  2234. +00000000 T _abandon_arg_dup     libdsap        ds_types
  2235. +00000000 T _list_arg_dup        libdsap        ds_types
  2236. +00000000 T _search_arg_dup      libdsap        ds_types
  2237. +00000000 T _addentry_arg_dup    libdsap        ds_types
  2238. +00000000 T _removeentry_arg_dup libdsap        ds_types
  2239. +00000000 T _modifyentry_arg_dup libdsap        ds_types
  2240. +00000000 T _modifyrdn_arg_dup   libdsap        ds_types
  2241. +00000000 T _getedb_arg_dup      libdsap        ds_types
  2242. +00000000 T _ca_dup              libdsap        ds_types
  2243. +00000000 T _secp_cpy            libdsap        ds_types
  2244. +00000000 T _random_cpy          libdsap        ds_types
  2245. +00000000 T _sig_cpy             libdsap        ds_types
  2246. +00000000 T _ext_cpy             libdsap        ds_types
  2247. +00000000 T _filter_cpy          libdsap        ds_types
  2248. +00000000 T _filter_item_dup     libdsap        ds_types
  2249. +00000000 T _fi_sub_dup          libdsap        ds_types
  2250. +00000000 T _ems_cpy             libdsap        ds_types
  2251. +00000000 T _eis_dup             libdsap        ds_types
  2252. +00000000 T _ava_dup             libdsap        ds_types
  2253. +00000000 T _ros_log             libdsap        plog
  2254. +00000000 T _acs_log             libdsap        plog
  2255. +00000000 T _td_log              libdsap        plog
  2256. +00000000 T _SetROPS             libdsap        plog
  2257. +00000000 T _FWaitRequest        libftam        ftamprovider
  2258. +00000000 T _FWaitRequestAux     libftam        ftamprovider
  2259. +00000000 T _FSetIndications     libftam        ftamprovider
  2260. +00000000 T _acs2ftamlose        libftam        ftamprovider
  2261. +00000000 T _acs2ftamabort       libftam        ftamprovider
  2262. +00000000 T _ps2ftamlose         libftam        ftamprovider
  2263. +00000000 T _newfsblk            libftam        ftamprovider
  2264. +00000000 T _freefsblk           libftam        ftamprovider
  2265. +00000000 T _findfsblk           libftam        ftamprovider
  2266. +00000000 T _FErrString          libftam        ftamerror
  2267. +00000000 T _FInitializeRequest  libftam        ftaminitiate
  2268. +00000000 T _FInit               libftam        ftamrespond
  2269. +00000000 T _FInitializeResponse libftam        ftamrespond
  2270. +00000000 T _FTerminateRequest   libftam        ftamrelease1
  2271. +00000000 T _FTerminateResponse  libftam        ftamrelease2
  2272. +00000000 T _FUAbortRequest      libftam        ftamabort
  2273. +00000000 T _FAbortRequestAux    libftam        ftamabort
  2274. +00000000 T _FManageRequest      libftam        ftamgroup1
  2275. +00000000 T _FBulkBeginRequest   libftam        ftamgroup1
  2276. +00000000 T _FBulkEndRequest     libftam        ftamgroup1
  2277. +00000000 T _FManageResponse     libftam        ftamgroup2
  2278. +00000000 T _FBulkBeginResponse  libftam        ftamgroup2
  2279. +00000000 T _FBulkEndResponse    libftam        ftamgroup2
  2280. +00000000 T _FAccessRequest      libftam        ftamaccess1
  2281. +00000000 T _FAccessResponse     libftam        ftamaccess2
  2282. +00000000 T _FDataRequest        libftam        ftambulk
  2283. +00000000 T _FDataEndRequest     libftam        ftambulk
  2284. +00000000 T _FCancelRequest      libftam        ftambulk
  2285. +00000000 T _FCancelResponse     libftam        ftambulk
  2286. +00000000 T _FCancelResponseAux  libftam        ftambulk
  2287. +00000000 T _FReadWriteRequest   libftam        ftambulk1
  2288. +00000000 T _FTransEndRequest    libftam        ftambulk1
  2289. +00000000 T _FTransEndResponse   libftam        ftambulk2
  2290. +00000000 T _FSelectMask         libftam        ftamselect
  2291. +00000000 T _FHookRequest        libftam        ftamtrace
  2292. +00000000 T _FTraceHook          libftam        ftamtrace
  2293. +00000000 T _acl2fpm             libftam        ftamacl
  2294. +00000000 T _fpm2acl             libftam        ftamacl
  2295. +00000000 T _attr2fpm            libftam        ftamattr
  2296. +00000000 T _fpm2attr            libftam        ftamattr
  2297. +00000000 T _FAFREE              libftam        ftamattr
  2298. +00000000 T _bits2fpm            libftam        ftambits
  2299. +00000000 T _fpm2bits            libftam        ftambits
  2300. +00000000 T _chrg2fpm            libftam        ftamchrg
  2301. +00000000 T _fpm2chrg            libftam        ftamchrg
  2302. +00000000 T _conctl2fpm          libftam        ftamconctl
  2303. +00000000 T _fpm2conctl          libftam        ftamconctl
  2304. +00000000 T _conacc2fpm          libftam        ftamconctl
  2305. +00000000 T _fpm2conacc          libftam        ftamconctl
  2306. +00000000 T _diag2fpm            libftam        ftamdiag
  2307. +00000000 T _fpm2diag            libftam        ftamdiag
  2308. +00000000 T _faduid2fpm          libftam        ftamfaduid
  2309. +00000000 T _fpm2faduid          libftam        ftamfaduid
  2310. +00000000 T _pass2fpm            libftam        ftampass
  2311. +00000000 T _fpm2pass            libftam        ftampass
  2312. +00000000 T _shared2fpm          libftam        ftamshare
  2313. +00000000 T _fpm2shared          libftam        ftamshare
  2314. +00000000 T _fpktlose            libftam        ftamlose
  2315. +00000000 T _ftamlose            libftam        ftamlose
  2316. +00000000 T _ftamoops            libftam        ftamlose
  2317. +00000000 T _setisodocument      libftam        ftamdocument
  2318. +00000000 T _endisodocument      libftam        ftamdocument
  2319. +00000000 T _getisodocument      libftam        ftamdocument
  2320. +00000000 T _getisodocumentbyentry libftam        ftamdocument
  2321. +00000000 T _getisodocumentbytype libftam        ftamdocument
  2322. +00000000 T _fdf_p2names         libftam        ftamfdf
  2323. +00000000 T _fdf_names2p         libftam        ftamfdf
  2324. +00000000 T _fdf_attrs2d         libftam        ftamfdf
  2325. +00000000 T _fdf_d2attrs         libftam        ftamfdf
  2326. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/jump/jump.import isode-8.0/jump/jump.import
  2327. --- old/isode-8.0/jump/jump.import    Thu Jan  1 01:00:00 1970
  2328. +++ isode-8.0/jump/jump.import    Thu Aug 26 14:24:23 1993
  2329. @@ -0,0 +1,917 @@
  2330. +/usr/lib/libc.sa(__libc.o):00001000 a __GOT_SIZE
  2331. +/usr/lib/libc.sa(__libc.o):6008f0b0 A _AL
  2332. +/usr/lib/libc.sa(__libc.o):6008f198 A _AL_PARM
  2333. +/usr/lib/libc.sa(__libc.o):6008f060 A _AM
  2334. +/usr/lib/libc.sa(__libc.o):6008f0b4 A _BC
  2335. +/usr/lib/libc.sa(__libc.o):6008f064 A _BS
  2336. +/usr/lib/libc.sa(__libc.o):6008f0bc A _BT
  2337. +/usr/lib/libc.sa(__libc.o):6008f068 A _CA
  2338. +/usr/lib/libc.sa(__libc.o):6008f0c0 A _CD
  2339. +/usr/lib/libc.sa(__libc.o):6008f0c4 A _CE
  2340. +/usr/lib/libc.sa(__libc.o):6008f0c8 A _CL
  2341. +/usr/lib/libc.sa(__libc.o):6008f0cc A _CM
  2342. +/usr/lib/libc.sa(__libc.o):6008f048 A _COLS
  2343. +/usr/lib/libc.sa(__libc.o):6008f0d0 A _CR
  2344. +/usr/lib/libc.sa(__libc.o):6008f0d4 A _CS
  2345. +/usr/lib/libc.sa(__libc.o):6008f06c A _DA
  2346. +/usr/lib/libc.sa(__libc.o):6008f070 A _DB
  2347. +/usr/lib/libc.sa(__libc.o):6008f0d8 A _DC
  2348. +/usr/lib/libc.sa(__libc.o):6008f0dc A _DL
  2349. +/usr/lib/libc.sa(__libc.o):6008f19c A _DL_PARM
  2350. +/usr/lib/libc.sa(__libc.o):6008f0e0 A _DM
  2351. +/usr/lib/libc.sa(__libc.o):6008f0e4 A _DO
  2352. +/usr/lib/libc.sa(__libc.o):6008f1a4 A _DOWN_PARM
  2353. +/usr/lib/libc.sa(__libc.o):6008f03c A _Def_term
  2354. +/usr/lib/libc.sa(__libc.o):6008f0e8 A _ED
  2355. +/usr/lib/libc.sa(__libc.o):6008f0ec A _EI
  2356. +/usr/lib/libc.sa(__libc.o):6008f074 A _EO
  2357. +/usr/lib/libc.sa(__libc.o):6008f1b8 A _GT
  2358. +/usr/lib/libc.sa(__libc.o):6008f078 A _HC
  2359. +/usr/lib/libc.sa(__libc.o):6008f118 A _HO
  2360. +/usr/lib/libc.sa(__libc.o):6008f07c A _HZ
  2361. +/usr/lib/libc.sa(__libc.o):6008f11c A _IC
  2362. +/usr/lib/libc.sa(__libc.o):6008f120 A _IM
  2363. +/usr/lib/libc.sa(__libc.o):6008f080 A _IN
  2364. +/usr/lib/libc.sa(__libc.o):6008f124 A _IP
  2365. +/usr/lib/libc.sa(__libc.o):6008f0f0 A _K0
  2366. +/usr/lib/libc.sa(__libc.o):6008f0f4 A _K1
  2367. +/usr/lib/libc.sa(__libc.o):6008f0f8 A _K2
  2368. +/usr/lib/libc.sa(__libc.o):6008f0fc A _K3
  2369. +/usr/lib/libc.sa(__libc.o):6008f100 A _K4
  2370. +/usr/lib/libc.sa(__libc.o):6008f104 A _K5
  2371. +/usr/lib/libc.sa(__libc.o):6008f108 A _K6
  2372. +/usr/lib/libc.sa(__libc.o):6008f10c A _K7
  2373. +/usr/lib/libc.sa(__libc.o):6008f110 A _K8
  2374. +/usr/lib/libc.sa(__libc.o):6008f114 A _K9
  2375. +/usr/lib/libc.sa(__libc.o):6008f128 A _KD
  2376. +/usr/lib/libc.sa(__libc.o):6008f12c A _KE
  2377. +/usr/lib/libc.sa(__libc.o):6008f130 A _KH
  2378. +/usr/lib/libc.sa(__libc.o):6008f134 A _KL
  2379. +/usr/lib/libc.sa(__libc.o):6008f138 A _KR
  2380. +/usr/lib/libc.sa(__libc.o):6008f13c A _KS
  2381. +/usr/lib/libc.sa(__libc.o):6008f140 A _KU
  2382. +/usr/lib/libc.sa(__libc.o):6008f1a8 A _LEFT_PARM
  2383. +/usr/lib/libc.sa(__libc.o):6008f044 A _LINES
  2384. +/usr/lib/libc.sa(__libc.o):6008f144 A _LL
  2385. +/usr/lib/libc.sa(__libc.o):6008f148 A _MA
  2386. +/usr/lib/libc.sa(__libc.o):6008f084 A _MI
  2387. +/usr/lib/libc.sa(__libc.o):6008f088 A _MS
  2388. +/usr/lib/libc.sa(__libc.o):6008f030 A _My_term
  2389. +/usr/lib/libc.sa(__libc.o):6008f08c A _NC
  2390. +/usr/lib/libc.sa(__libc.o):6008f14c A _ND
  2391. +/usr/lib/libc.sa(__libc.o):6008f150 A _NL
  2392. +/usr/lib/libc.sa(__libc.o):6008f1bc A _NONL
  2393. +/usr/lib/libc.sa(__libc.o):6008f090 A _NS
  2394. +/usr/lib/libc.sa(__libc.o):6008f094 A _OS
  2395. +/usr/lib/libc.sa(__libc.o):6008f1b0 A _PC
  2396. +/usr/lib/libc.sa(__libc.o):6008f154 A _RC
  2397. +/usr/lib/libc.sa(__libc.o):6008f1ac A _RIGHT_PARM
  2398. +/usr/lib/libc.sa(__libc.o):6008f158 A _SC
  2399. +/usr/lib/libc.sa(__libc.o):6008f15c A _SE
  2400. +/usr/lib/libc.sa(__libc.o):6008f160 A _SF
  2401. +/usr/lib/libc.sa(__libc.o):6008f164 A _SO
  2402. +/usr/lib/libc.sa(__libc.o):6008f168 A _SR
  2403. +/usr/lib/libc.sa(__libc.o):6008f16c A _TA
  2404. +/usr/lib/libc.sa(__libc.o):6008f170 A _TE
  2405. +/usr/lib/libc.sa(__libc.o):6008f174 A _TI
  2406. +/usr/lib/libc.sa(__libc.o):6008f178 A _UC
  2407. +/usr/lib/libc.sa(__libc.o):6008f17c A _UE
  2408. +/usr/lib/libc.sa(__libc.o):6008f098 A _UL
  2409. +/usr/lib/libc.sa(__libc.o):6008f180 A _UP
  2410. +/usr/lib/libc.sa(__libc.o):6008f1c0 A _UPPERCASE
  2411. +/usr/lib/libc.sa(__libc.o):6008f1a0 A _UP_PARM
  2412. +/usr/lib/libc.sa(__libc.o):6008f188 A _US
  2413. +/usr/lib/libc.sa(__libc.o):6008f18c A _VB
  2414. +/usr/lib/libc.sa(__libc.o):6008f194 A _VE
  2415. +/usr/lib/libc.sa(__libc.o):6008f190 A _VS
  2416. +/usr/lib/libc.sa(__libc.o):6008f09c A _XB
  2417. +/usr/lib/libc.sa(__libc.o):6008f0a0 A _XN
  2418. +/usr/lib/libc.sa(__libc.o):6008f0a8 A _XS
  2419. +/usr/lib/libc.sa(__libc.o):6008f0a4 A _XT
  2420. +/usr/lib/libc.sa(__libc.o):6008f0ac A _XX
  2421. +/usr/lib/libc.sa(__libc.o):6008f1f4 A __9streambuf$_list_all
  2422. +/usr/lib/libc.sa(__libc.o):6008f214 A ____brk_addr
  2423. +/usr/lib/libc.sa(__libc.o):6008f01c A ___ctype_b
  2424. +/usr/lib/libc.sa(__libc.o):6008f020 A ___ctype_tolower
  2425. +/usr/lib/libc.sa(__libc.o):6008f024 A ___ctype_toupper
  2426. +/usr/lib/libc.sa(__libc.o):6008f1fc A ___environ
  2427. +/usr/lib/libc.sa(__libc.o):6008f250 A ___exit_funcs
  2428. +/usr/lib/libc.sa(__libc.o):6008f2f0 A ___glob_closedir_hook
  2429. +/usr/lib/libc.sa(__libc.o):6008f2f4 A ___glob_opendir_hook
  2430. +/usr/lib/libc.sa(__libc.o):6008f2f8 A ___glob_readdir_hook
  2431. +/usr/lib/libc.sa(__libc.o):6008f018 A ___new_handler
  2432. +/usr/lib/libc.sa(__libc.o):6008f1e4 A ___std_filebuf_0
  2433. +/usr/lib/libc.sa(__libc.o):6008f1e8 A ___std_filebuf_1
  2434. +/usr/lib/libc.sa(__libc.o):6008f1ec A ___std_filebuf_2
  2435. +/usr/lib/libc.sa(__libc.o):6008f278 A ___ttyname
  2436. +/usr/lib/libc.sa(__libc.o):6008f238 A __collate_info
  2437. +/usr/lib/libc.sa(__libc.o):6008f23c A __ctype_info
  2438. +/usr/lib/libc.sa(__libc.o):6008f028 A __echoit
  2439. +/usr/lib/libc.sa(__libc.o):6008f034 A __endwin
  2440. +/usr/lib/libc.sa(__libc.o):6008f288 A __gdbm_fetch_val
  2441. +/usr/lib/libc.sa(__libc.o):6008f280 A __gdbm_file
  2442. +/usr/lib/libc.sa(__libc.o):6008f284 A __gdbm_memory
  2443. +/usr/lib/libc.sa(__libc.o):6008f1f8 A __iob
  2444. +/usr/lib/libc.sa(__libc.o):6008f240 A __monetary_info
  2445. +/usr/lib/libc.sa(__libc.o):6008f234 A __null_auth
  2446. +/usr/lib/libc.sa(__libc.o):6008f244 A __numeric_info
  2447. +/usr/lib/libc.sa(__libc.o):6008f2ec A __obstack
  2448. +/usr/lib/libc.sa(__libc.o):6008f1c8 A __pfast
  2449. +/usr/lib/libc.sa(__libc.o):6008f02c A __rawmode
  2450. +/usr/lib/libc.sa(__libc.o):6008f1dc A __res
  2451. +/usr/lib/libc.sa(__libc.o):6008f04c A __res_iflg
  2452. +/usr/lib/libc.sa(__libc.o):6008f050 A __res_lflg
  2453. +/usr/lib/libc.sa(__libc.o):6008f270 A __res_opcodes
  2454. +/usr/lib/libc.sa(__libc.o):6008f274 A __res_resultcodes
  2455. +/usr/lib/libc.sa(__libc.o):6008f248 A __response_info
  2456. +/usr/lib/libc.sa(__libc.o):6008f2fc A __sigintr
  2457. +/usr/lib/libc.sa(__libc.o):6008f00c A __sys_errlist
  2458. +/usr/lib/libc.sa(__libc.o):6008f010 A __sys_nerr
  2459. +/usr/lib/libc.sa(__libc.o):6008f014 A __sys_siglist
  2460. +/usr/lib/libc.sa(__libc.o):6008f24c A __time_info
  2461. +/usr/lib/libc.sa(__libc.o):6008f05c A __tty
  2462. +/usr/lib/libc.sa(__libc.o):6008f040 A __tty_ch
  2463. +/usr/lib/libc.sa(__libc.o):6008f1cc A __unctrl
  2464. +/usr/lib/libc.sa(__libc.o):6008f2c8 A __vt$10istrstream$3ios
  2465. +/usr/lib/libc.sa(__libc.o):6008f2c4 A __vt$10ostrstream$3ios
  2466. +/usr/lib/libc.sa(__libc.o):6008f2e0 A __vt$11fstreambase$3ios
  2467. +/usr/lib/libc.sa(__libc.o):6008f2cc A __vt$13strstreambase$3ios
  2468. +/usr/lib/libc.sa(__libc.o):6008f2d4 A __vt$7fstream$3ios
  2469. +/usr/lib/libc.sa(__libc.o):6008f2ac A __vt$7ostream$3ios
  2470. +/usr/lib/libc.sa(__libc.o):6008f2dc A __vt$8ifstream$3ios
  2471. +/usr/lib/libc.sa(__libc.o):6008f2a4 A __vt$8iostream$3ios
  2472. +/usr/lib/libc.sa(__libc.o):6008f2d8 A __vt$8ofstream$3ios
  2473. +/usr/lib/libc.sa(__libc.o):6008f2c0 A __vt$9strstream$3ios
  2474. +/usr/lib/libc.sa(__libc.o):6008f2b4 A __vt$backupbuf
  2475. +/usr/lib/libc.sa(__libc.o):6008f2b0 A __vt$filebuf
  2476. +/usr/lib/libc.sa(__libc.o):6008f2bc A __vt$ios
  2477. +/usr/lib/libc.sa(__libc.o):6008f2a8 A __vt$istream$3ios
  2478. +/usr/lib/libc.sa(__libc.o):6008f2b8 A __vt$streambuf
  2479. +/usr/lib/libc.sa(__libc.o):6008f2d0 A __vt$strstreambuf
  2480. +/usr/lib/libc.sa(__libc.o):6008f27c A __win
  2481. +/usr/lib/libc.sa(__libc.o):6008f294 A _cerr
  2482. +/usr/lib/libc.sa(__libc.o):6008f298 A _cin
  2483. +/usr/lib/libc.sa(__libc.o):6008f29c A _clog
  2484. +/usr/lib/libc.sa(__libc.o):6008f290 A _cout
  2485. +/usr/lib/libc.sa(__libc.o):6008f058 A _curscr
  2486. +/usr/lib/libc.sa(__libc.o):6008f228 A _daylight
  2487. +/usr/lib/libc.sa(__libc.o):6008f200 A _errno
  2488. +/usr/lib/libc.sa(__libc.o):6008f1d0 A _gdbm_errno
  2489. +/usr/lib/libc.sa(__libc.o):6008f28c A _gdbm_version
  2490. +/usr/lib/libc.sa(__libc.o):6008f008 A _h_errlist
  2491. +/usr/lib/libc.sa(__libc.o):6008f1d8 A _h_errno
  2492. +/usr/lib/libc.sa(__libc.o):6008f2a0 A _h_nerr
  2493. +/usr/lib/libc.sa(__libc.o):6008f1c4 A _normtty
  2494. +/usr/lib/libc.sa(__libc.o):6008f1f0 A _not_open_filebuf
  2495. +/usr/lib/libc.sa(__libc.o):6008f204 A _optarg
  2496. +/usr/lib/libc.sa(__libc.o):6008f20c A _opterr
  2497. +/usr/lib/libc.sa(__libc.o):6008f208 A _optind
  2498. +/usr/lib/libc.sa(__libc.o):6008f2e4 A _optopt
  2499. +/usr/lib/libc.sa(__libc.o):6008f218 A _ospeed
  2500. +/usr/lib/libc.sa(__libc.o):6008f26c A _re_max_failures
  2501. +/usr/lib/libc.sa(__libc.o):6008f210 A _re_syntax_options
  2502. +/usr/lib/libc.sa(__libc.o):6008f1e0 A _rexecoptions
  2503. +/usr/lib/libc.sa(__libc.o):6008f230 A _rpc_createerr
  2504. +/usr/lib/libc.sa(__libc.o):6008f25c A _stderr
  2505. +/usr/lib/libc.sa(__libc.o):6008f254 A _stdin
  2506. +/usr/lib/libc.sa(__libc.o):6008f258 A _stdout
  2507. +/usr/lib/libc.sa(__libc.o):6008f054 A _stdscr
  2508. +/usr/lib/libc.sa(__libc.o):6008f2e8 A _svc_fdset
  2509. +/usr/lib/libc.sa(__libc.o):6008f224 A _timezone
  2510. +/usr/lib/libc.sa(__libc.o):6008f21c A _tputs_baud_rate
  2511. +/usr/lib/libc.sa(__libc.o):6008f038 A _ttytype
  2512. +/usr/lib/libc.sa(__libc.o):6008f220 A _tzname
  2513. +/usr/lib/libcurses.sa(__libc.o):00001000 a __GOT_SIZE
  2514. +/usr/lib/libcurses.sa(__libc.o):6008f0b0 A _AL
  2515. +/usr/lib/libcurses.sa(__libc.o):6008f198 A _AL_PARM
  2516. +/usr/lib/libcurses.sa(__libc.o):6008f060 A _AM
  2517. +/usr/lib/libcurses.sa(__libc.o):6008f0b4 A _BC
  2518. +/usr/lib/libcurses.sa(__libc.o):6008f064 A _BS
  2519. +/usr/lib/libcurses.sa(__libc.o):6008f0bc A _BT
  2520. +/usr/lib/libcurses.sa(__libc.o):6008f068 A _CA
  2521. +/usr/lib/libcurses.sa(__libc.o):6008f0c0 A _CD
  2522. +/usr/lib/libcurses.sa(__libc.o):6008f0c4 A _CE
  2523. +/usr/lib/libcurses.sa(__libc.o):6008f0c8 A _CL
  2524. +/usr/lib/libcurses.sa(__libc.o):6008f0cc A _CM
  2525. +/usr/lib/libcurses.sa(__libc.o):6008f048 A _COLS
  2526. +/usr/lib/libcurses.sa(__libc.o):6008f0d0 A _CR
  2527. +/usr/lib/libcurses.sa(__libc.o):6008f0d4 A _CS
  2528. +/usr/lib/libcurses.sa(__libc.o):6008f06c A _DA
  2529. +/usr/lib/libcurses.sa(__libc.o):6008f070 A _DB
  2530. +/usr/lib/libcurses.sa(__libc.o):6008f0d8 A _DC
  2531. +/usr/lib/libcurses.sa(__libc.o):6008f0dc A _DL
  2532. +/usr/lib/libcurses.sa(__libc.o):6008f19c A _DL_PARM
  2533. +/usr/lib/libcurses.sa(__libc.o):6008f0e0 A _DM
  2534. +/usr/lib/libcurses.sa(__libc.o):6008f0e4 A _DO
  2535. +/usr/lib/libcurses.sa(__libc.o):6008f1a4 A _DOWN_PARM
  2536. +/usr/lib/libcurses.sa(__libc.o):6008f03c A _Def_term
  2537. +/usr/lib/libcurses.sa(__libc.o):6008f0e8 A _ED
  2538. +/usr/lib/libcurses.sa(__libc.o):6008f0ec A _EI
  2539. +/usr/lib/libcurses.sa(__libc.o):6008f074 A _EO
  2540. +/usr/lib/libcurses.sa(__libc.o):6008f1b8 A _GT
  2541. +/usr/lib/libcurses.sa(__libc.o):6008f078 A _HC
  2542. +/usr/lib/libcurses.sa(__libc.o):6008f118 A _HO
  2543. +/usr/lib/libcurses.sa(__libc.o):6008f07c A _HZ
  2544. +/usr/lib/libcurses.sa(__libc.o):6008f11c A _IC
  2545. +/usr/lib/libcurses.sa(__libc.o):6008f120 A _IM
  2546. +/usr/lib/libcurses.sa(__libc.o):6008f080 A _IN
  2547. +/usr/lib/libcurses.sa(__libc.o):6008f124 A _IP
  2548. +/usr/lib/libcurses.sa(__libc.o):6008f0f0 A _K0
  2549. +/usr/lib/libcurses.sa(__libc.o):6008f0f4 A _K1
  2550. +/usr/lib/libcurses.sa(__libc.o):6008f0f8 A _K2
  2551. +/usr/lib/libcurses.sa(__libc.o):6008f0fc A _K3
  2552. +/usr/lib/libcurses.sa(__libc.o):6008f100 A _K4
  2553. +/usr/lib/libcurses.sa(__libc.o):6008f104 A _K5
  2554. +/usr/lib/libcurses.sa(__libc.o):6008f108 A _K6
  2555. +/usr/lib/libcurses.sa(__libc.o):6008f10c A _K7
  2556. +/usr/lib/libcurses.sa(__libc.o):6008f110 A _K8
  2557. +/usr/lib/libcurses.sa(__libc.o):6008f114 A _K9
  2558. +/usr/lib/libcurses.sa(__libc.o):6008f128 A _KD
  2559. +/usr/lib/libcurses.sa(__libc.o):6008f12c A _KE
  2560. +/usr/lib/libcurses.sa(__libc.o):6008f130 A _KH
  2561. +/usr/lib/libcurses.sa(__libc.o):6008f134 A _KL
  2562. +/usr/lib/libcurses.sa(__libc.o):6008f138 A _KR
  2563. +/usr/lib/libcurses.sa(__libc.o):6008f13c A _KS
  2564. +/usr/lib/libcurses.sa(__libc.o):6008f140 A _KU
  2565. +/usr/lib/libcurses.sa(__libc.o):6008f1a8 A _LEFT_PARM
  2566. +/usr/lib/libcurses.sa(__libc.o):6008f044 A _LINES
  2567. +/usr/lib/libcurses.sa(__libc.o):6008f144 A _LL
  2568. +/usr/lib/libcurses.sa(__libc.o):6008f148 A _MA
  2569. +/usr/lib/libcurses.sa(__libc.o):6008f084 A _MI
  2570. +/usr/lib/libcurses.sa(__libc.o):6008f088 A _MS
  2571. +/usr/lib/libcurses.sa(__libc.o):6008f030 A _My_term
  2572. +/usr/lib/libcurses.sa(__libc.o):6008f08c A _NC
  2573. +/usr/lib/libcurses.sa(__libc.o):6008f14c A _ND
  2574. +/usr/lib/libcurses.sa(__libc.o):6008f150 A _NL
  2575. +/usr/lib/libcurses.sa(__libc.o):6008f1bc A _NONL
  2576. +/usr/lib/libcurses.sa(__libc.o):6008f090 A _NS
  2577. +/usr/lib/libcurses.sa(__libc.o):6008f094 A _OS
  2578. +/usr/lib/libcurses.sa(__libc.o):6008f1b0 A _PC
  2579. +/usr/lib/libcurses.sa(__libc.o):6008f154 A _RC
  2580. +/usr/lib/libcurses.sa(__libc.o):6008f1ac A _RIGHT_PARM
  2581. +/usr/lib/libcurses.sa(__libc.o):6008f158 A _SC
  2582. +/usr/lib/libcurses.sa(__libc.o):6008f15c A _SE
  2583. +/usr/lib/libcurses.sa(__libc.o):6008f160 A _SF
  2584. +/usr/lib/libcurses.sa(__libc.o):6008f164 A _SO
  2585. +/usr/lib/libcurses.sa(__libc.o):6008f168 A _SR
  2586. +/usr/lib/libcurses.sa(__libc.o):6008f16c A _TA
  2587. +/usr/lib/libcurses.sa(__libc.o):6008f170 A _TE
  2588. +/usr/lib/libcurses.sa(__libc.o):6008f174 A _TI
  2589. +/usr/lib/libcurses.sa(__libc.o):6008f178 A _UC
  2590. +/usr/lib/libcurses.sa(__libc.o):6008f17c A _UE
  2591. +/usr/lib/libcurses.sa(__libc.o):6008f098 A _UL
  2592. +/usr/lib/libcurses.sa(__libc.o):6008f180 A _UP
  2593. +/usr/lib/libcurses.sa(__libc.o):6008f1c0 A _UPPERCASE
  2594. +/usr/lib/libcurses.sa(__libc.o):6008f1a0 A _UP_PARM
  2595. +/usr/lib/libcurses.sa(__libc.o):6008f188 A _US
  2596. +/usr/lib/libcurses.sa(__libc.o):6008f18c A _VB
  2597. +/usr/lib/libcurses.sa(__libc.o):6008f194 A _VE
  2598. +/usr/lib/libcurses.sa(__libc.o):6008f190 A _VS
  2599. +/usr/lib/libcurses.sa(__libc.o):6008f09c A _XB
  2600. +/usr/lib/libcurses.sa(__libc.o):6008f0a0 A _XN
  2601. +/usr/lib/libcurses.sa(__libc.o):6008f0a8 A _XS
  2602. +/usr/lib/libcurses.sa(__libc.o):6008f0a4 A _XT
  2603. +/usr/lib/libcurses.sa(__libc.o):6008f0ac A _XX
  2604. +/usr/lib/libcurses.sa(__libc.o):6008f1f4 A __9streambuf$_list_all
  2605. +/usr/lib/libcurses.sa(__libc.o):6008f214 A ____brk_addr
  2606. +/usr/lib/libcurses.sa(__libc.o):6008f01c A ___ctype_b
  2607. +/usr/lib/libcurses.sa(__libc.o):6008f020 A ___ctype_tolower
  2608. +/usr/lib/libcurses.sa(__libc.o):6008f024 A ___ctype_toupper
  2609. +/usr/lib/libcurses.sa(__libc.o):6008f1fc A ___environ
  2610. +/usr/lib/libcurses.sa(__libc.o):6008f250 A ___exit_funcs
  2611. +/usr/lib/libcurses.sa(__libc.o):6008f2f0 A ___glob_closedir_hook
  2612. +/usr/lib/libcurses.sa(__libc.o):6008f2f4 A ___glob_opendir_hook
  2613. +/usr/lib/libcurses.sa(__libc.o):6008f2f8 A ___glob_readdir_hook
  2614. +/usr/lib/libcurses.sa(__libc.o):6008f018 A ___new_handler
  2615. +/usr/lib/libcurses.sa(__libc.o):6008f1e4 A ___std_filebuf_0
  2616. +/usr/lib/libcurses.sa(__libc.o):6008f1e8 A ___std_filebuf_1
  2617. +/usr/lib/libcurses.sa(__libc.o):6008f1ec A ___std_filebuf_2
  2618. +/usr/lib/libcurses.sa(__libc.o):6008f278 A ___ttyname
  2619. +/usr/lib/libcurses.sa(__libc.o):6008f238 A __collate_info
  2620. +/usr/lib/libcurses.sa(__libc.o):6008f23c A __ctype_info
  2621. +/usr/lib/libcurses.sa(__libc.o):6008f028 A __echoit
  2622. +/usr/lib/libcurses.sa(__libc.o):6008f034 A __endwin
  2623. +/usr/lib/libcurses.sa(__libc.o):6008f288 A __gdbm_fetch_val
  2624. +/usr/lib/libcurses.sa(__libc.o):6008f280 A __gdbm_file
  2625. +/usr/lib/libcurses.sa(__libc.o):6008f284 A __gdbm_memory
  2626. +/usr/lib/libcurses.sa(__libc.o):6008f1f8 A __iob
  2627. +/usr/lib/libcurses.sa(__libc.o):6008f240 A __monetary_info
  2628. +/usr/lib/libcurses.sa(__libc.o):6008f234 A __null_auth
  2629. +/usr/lib/libcurses.sa(__libc.o):6008f244 A __numeric_info
  2630. +/usr/lib/libcurses.sa(__libc.o):6008f2ec A __obstack
  2631. +/usr/lib/libcurses.sa(__libc.o):6008f1c8 A __pfast
  2632. +/usr/lib/libcurses.sa(__libc.o):6008f02c A __rawmode
  2633. +/usr/lib/libcurses.sa(__libc.o):6008f1dc A __res
  2634. +/usr/lib/libcurses.sa(__libc.o):6008f04c A __res_iflg
  2635. +/usr/lib/libcurses.sa(__libc.o):6008f050 A __res_lflg
  2636. +/usr/lib/libcurses.sa(__libc.o):6008f270 A __res_opcodes
  2637. +/usr/lib/libcurses.sa(__libc.o):6008f274 A __res_resultcodes
  2638. +/usr/lib/libcurses.sa(__libc.o):6008f248 A __response_info
  2639. +/usr/lib/libcurses.sa(__libc.o):6008f2fc A __sigintr
  2640. +/usr/lib/libcurses.sa(__libc.o):6008f00c A __sys_errlist
  2641. +/usr/lib/libcurses.sa(__libc.o):6008f010 A __sys_nerr
  2642. +/usr/lib/libcurses.sa(__libc.o):6008f014 A __sys_siglist
  2643. +/usr/lib/libcurses.sa(__libc.o):6008f24c A __time_info
  2644. +/usr/lib/libcurses.sa(__libc.o):6008f05c A __tty
  2645. +/usr/lib/libcurses.sa(__libc.o):6008f040 A __tty_ch
  2646. +/usr/lib/libcurses.sa(__libc.o):6008f1cc A __unctrl
  2647. +/usr/lib/libcurses.sa(__libc.o):6008f2c8 A __vt$10istrstream$3ios
  2648. +/usr/lib/libcurses.sa(__libc.o):6008f2c4 A __vt$10ostrstream$3ios
  2649. +/usr/lib/libcurses.sa(__libc.o):6008f2e0 A __vt$11fstreambase$3ios
  2650. +/usr/lib/libcurses.sa(__libc.o):6008f2cc A __vt$13strstreambase$3ios
  2651. +/usr/lib/libcurses.sa(__libc.o):6008f2d4 A __vt$7fstream$3ios
  2652. +/usr/lib/libcurses.sa(__libc.o):6008f2ac A __vt$7ostream$3ios
  2653. +/usr/lib/libcurses.sa(__libc.o):6008f2dc A __vt$8ifstream$3ios
  2654. +/usr/lib/libcurses.sa(__libc.o):6008f2a4 A __vt$8iostream$3ios
  2655. +/usr/lib/libcurses.sa(__libc.o):6008f2d8 A __vt$8ofstream$3ios
  2656. +/usr/lib/libcurses.sa(__libc.o):6008f2c0 A __vt$9strstream$3ios
  2657. +/usr/lib/libcurses.sa(__libc.o):6008f2b4 A __vt$backupbuf
  2658. +/usr/lib/libcurses.sa(__libc.o):6008f2b0 A __vt$filebuf
  2659. +/usr/lib/libcurses.sa(__libc.o):6008f2bc A __vt$ios
  2660. +/usr/lib/libcurses.sa(__libc.o):6008f2a8 A __vt$istream$3ios
  2661. +/usr/lib/libcurses.sa(__libc.o):6008f2b8 A __vt$streambuf
  2662. +/usr/lib/libcurses.sa(__libc.o):6008f2d0 A __vt$strstreambuf
  2663. +/usr/lib/libcurses.sa(__libc.o):6008f27c A __win
  2664. +/usr/lib/libcurses.sa(__libc.o):6008f294 A _cerr
  2665. +/usr/lib/libcurses.sa(__libc.o):6008f298 A _cin
  2666. +/usr/lib/libcurses.sa(__libc.o):6008f29c A _clog
  2667. +/usr/lib/libcurses.sa(__libc.o):6008f290 A _cout
  2668. +/usr/lib/libcurses.sa(__libc.o):6008f058 A _curscr
  2669. +/usr/lib/libcurses.sa(__libc.o):6008f228 A _daylight
  2670. +/usr/lib/libcurses.sa(__libc.o):6008f200 A _errno
  2671. +/usr/lib/libcurses.sa(__libc.o):6008f1d0 A _gdbm_errno
  2672. +/usr/lib/libcurses.sa(__libc.o):6008f28c A _gdbm_version
  2673. +/usr/lib/libcurses.sa(__libc.o):6008f008 A _h_errlist
  2674. +/usr/lib/libcurses.sa(__libc.o):6008f1d8 A _h_errno
  2675. +/usr/lib/libcurses.sa(__libc.o):6008f2a0 A _h_nerr
  2676. +/usr/lib/libcurses.sa(__libc.o):6008f1c4 A _normtty
  2677. +/usr/lib/libcurses.sa(__libc.o):6008f1f0 A _not_open_filebuf
  2678. +/usr/lib/libcurses.sa(__libc.o):6008f204 A _optarg
  2679. +/usr/lib/libcurses.sa(__libc.o):6008f20c A _opterr
  2680. +/usr/lib/libcurses.sa(__libc.o):6008f208 A _optind
  2681. +/usr/lib/libcurses.sa(__libc.o):6008f2e4 A _optopt
  2682. +/usr/lib/libcurses.sa(__libc.o):6008f218 A _ospeed
  2683. +/usr/lib/libcurses.sa(__libc.o):6008f26c A _re_max_failures
  2684. +/usr/lib/libcurses.sa(__libc.o):6008f210 A _re_syntax_options
  2685. +/usr/lib/libcurses.sa(__libc.o):6008f1e0 A _rexecoptions
  2686. +/usr/lib/libcurses.sa(__libc.o):6008f230 A _rpc_createerr
  2687. +/usr/lib/libcurses.sa(__libc.o):6008f25c A _stderr
  2688. +/usr/lib/libcurses.sa(__libc.o):6008f254 A _stdin
  2689. +/usr/lib/libcurses.sa(__libc.o):6008f258 A _stdout
  2690. +/usr/lib/libcurses.sa(__libc.o):6008f054 A _stdscr
  2691. +/usr/lib/libcurses.sa(__libc.o):6008f2e8 A _svc_fdset
  2692. +/usr/lib/libcurses.sa(__libc.o):6008f224 A _timezone
  2693. +/usr/lib/libcurses.sa(__libc.o):6008f21c A _tputs_baud_rate
  2694. +/usr/lib/libcurses.sa(__libc.o):6008f038 A _ttytype
  2695. +/usr/lib/libcurses.sa(__libc.o):6008f220 A _tzname
  2696. +/usr/lib/libdbm.sa(__libc.o):00001000 a __GOT_SIZE
  2697. +/usr/lib/libdbm.sa(__libc.o):6008f0b0 A _AL
  2698. +/usr/lib/libdbm.sa(__libc.o):6008f198 A _AL_PARM
  2699. +/usr/lib/libdbm.sa(__libc.o):6008f060 A _AM
  2700. +/usr/lib/libdbm.sa(__libc.o):6008f0b4 A _BC
  2701. +/usr/lib/libdbm.sa(__libc.o):6008f064 A _BS
  2702. +/usr/lib/libdbm.sa(__libc.o):6008f0bc A _BT
  2703. +/usr/lib/libdbm.sa(__libc.o):6008f068 A _CA
  2704. +/usr/lib/libdbm.sa(__libc.o):6008f0c0 A _CD
  2705. +/usr/lib/libdbm.sa(__libc.o):6008f0c4 A _CE
  2706. +/usr/lib/libdbm.sa(__libc.o):6008f0c8 A _CL
  2707. +/usr/lib/libdbm.sa(__libc.o):6008f0cc A _CM
  2708. +/usr/lib/libdbm.sa(__libc.o):6008f048 A _COLS
  2709. +/usr/lib/libdbm.sa(__libc.o):6008f0d0 A _CR
  2710. +/usr/lib/libdbm.sa(__libc.o):6008f0d4 A _CS
  2711. +/usr/lib/libdbm.sa(__libc.o):6008f06c A _DA
  2712. +/usr/lib/libdbm.sa(__libc.o):6008f070 A _DB
  2713. +/usr/lib/libdbm.sa(__libc.o):6008f0d8 A _DC
  2714. +/usr/lib/libdbm.sa(__libc.o):6008f0dc A _DL
  2715. +/usr/lib/libdbm.sa(__libc.o):6008f19c A _DL_PARM
  2716. +/usr/lib/libdbm.sa(__libc.o):6008f0e0 A _DM
  2717. +/usr/lib/libdbm.sa(__libc.o):6008f0e4 A _DO
  2718. +/usr/lib/libdbm.sa(__libc.o):6008f1a4 A _DOWN_PARM
  2719. +/usr/lib/libdbm.sa(__libc.o):6008f03c A _Def_term
  2720. +/usr/lib/libdbm.sa(__libc.o):6008f0e8 A _ED
  2721. +/usr/lib/libdbm.sa(__libc.o):6008f0ec A _EI
  2722. +/usr/lib/libdbm.sa(__libc.o):6008f074 A _EO
  2723. +/usr/lib/libdbm.sa(__libc.o):6008f1b8 A _GT
  2724. +/usr/lib/libdbm.sa(__libc.o):6008f078 A _HC
  2725. +/usr/lib/libdbm.sa(__libc.o):6008f118 A _HO
  2726. +/usr/lib/libdbm.sa(__libc.o):6008f07c A _HZ
  2727. +/usr/lib/libdbm.sa(__libc.o):6008f11c A _IC
  2728. +/usr/lib/libdbm.sa(__libc.o):6008f120 A _IM
  2729. +/usr/lib/libdbm.sa(__libc.o):6008f080 A _IN
  2730. +/usr/lib/libdbm.sa(__libc.o):6008f124 A _IP
  2731. +/usr/lib/libdbm.sa(__libc.o):6008f0f0 A _K0
  2732. +/usr/lib/libdbm.sa(__libc.o):6008f0f4 A _K1
  2733. +/usr/lib/libdbm.sa(__libc.o):6008f0f8 A _K2
  2734. +/usr/lib/libdbm.sa(__libc.o):6008f0fc A _K3
  2735. +/usr/lib/libdbm.sa(__libc.o):6008f100 A _K4
  2736. +/usr/lib/libdbm.sa(__libc.o):6008f104 A _K5
  2737. +/usr/lib/libdbm.sa(__libc.o):6008f108 A _K6
  2738. +/usr/lib/libdbm.sa(__libc.o):6008f10c A _K7
  2739. +/usr/lib/libdbm.sa(__libc.o):6008f110 A _K8
  2740. +/usr/lib/libdbm.sa(__libc.o):6008f114 A _K9
  2741. +/usr/lib/libdbm.sa(__libc.o):6008f128 A _KD
  2742. +/usr/lib/libdbm.sa(__libc.o):6008f12c A _KE
  2743. +/usr/lib/libdbm.sa(__libc.o):6008f130 A _KH
  2744. +/usr/lib/libdbm.sa(__libc.o):6008f134 A _KL
  2745. +/usr/lib/libdbm.sa(__libc.o):6008f138 A _KR
  2746. +/usr/lib/libdbm.sa(__libc.o):6008f13c A _KS
  2747. +/usr/lib/libdbm.sa(__libc.o):6008f140 A _KU
  2748. +/usr/lib/libdbm.sa(__libc.o):6008f1a8 A _LEFT_PARM
  2749. +/usr/lib/libdbm.sa(__libc.o):6008f044 A _LINES
  2750. +/usr/lib/libdbm.sa(__libc.o):6008f144 A _LL
  2751. +/usr/lib/libdbm.sa(__libc.o):6008f148 A _MA
  2752. +/usr/lib/libdbm.sa(__libc.o):6008f084 A _MI
  2753. +/usr/lib/libdbm.sa(__libc.o):6008f088 A _MS
  2754. +/usr/lib/libdbm.sa(__libc.o):6008f030 A _My_term
  2755. +/usr/lib/libdbm.sa(__libc.o):6008f08c A _NC
  2756. +/usr/lib/libdbm.sa(__libc.o):6008f14c A _ND
  2757. +/usr/lib/libdbm.sa(__libc.o):6008f150 A _NL
  2758. +/usr/lib/libdbm.sa(__libc.o):6008f1bc A _NONL
  2759. +/usr/lib/libdbm.sa(__libc.o):6008f090 A _NS
  2760. +/usr/lib/libdbm.sa(__libc.o):6008f094 A _OS
  2761. +/usr/lib/libdbm.sa(__libc.o):6008f1b0 A _PC
  2762. +/usr/lib/libdbm.sa(__libc.o):6008f154 A _RC
  2763. +/usr/lib/libdbm.sa(__libc.o):6008f1ac A _RIGHT_PARM
  2764. +/usr/lib/libdbm.sa(__libc.o):6008f158 A _SC
  2765. +/usr/lib/libdbm.sa(__libc.o):6008f15c A _SE
  2766. +/usr/lib/libdbm.sa(__libc.o):6008f160 A _SF
  2767. +/usr/lib/libdbm.sa(__libc.o):6008f164 A _SO
  2768. +/usr/lib/libdbm.sa(__libc.o):6008f168 A _SR
  2769. +/usr/lib/libdbm.sa(__libc.o):6008f16c A _TA
  2770. +/usr/lib/libdbm.sa(__libc.o):6008f170 A _TE
  2771. +/usr/lib/libdbm.sa(__libc.o):6008f174 A _TI
  2772. +/usr/lib/libdbm.sa(__libc.o):6008f178 A _UC
  2773. +/usr/lib/libdbm.sa(__libc.o):6008f17c A _UE
  2774. +/usr/lib/libdbm.sa(__libc.o):6008f098 A _UL
  2775. +/usr/lib/libdbm.sa(__libc.o):6008f180 A _UP
  2776. +/usr/lib/libdbm.sa(__libc.o):6008f1c0 A _UPPERCASE
  2777. +/usr/lib/libdbm.sa(__libc.o):6008f1a0 A _UP_PARM
  2778. +/usr/lib/libdbm.sa(__libc.o):6008f188 A _US
  2779. +/usr/lib/libdbm.sa(__libc.o):6008f18c A _VB
  2780. +/usr/lib/libdbm.sa(__libc.o):6008f194 A _VE
  2781. +/usr/lib/libdbm.sa(__libc.o):6008f190 A _VS
  2782. +/usr/lib/libdbm.sa(__libc.o):6008f09c A _XB
  2783. +/usr/lib/libdbm.sa(__libc.o):6008f0a0 A _XN
  2784. +/usr/lib/libdbm.sa(__libc.o):6008f0a8 A _XS
  2785. +/usr/lib/libdbm.sa(__libc.o):6008f0a4 A _XT
  2786. +/usr/lib/libdbm.sa(__libc.o):6008f0ac A _XX
  2787. +/usr/lib/libdbm.sa(__libc.o):6008f1f4 A __9streambuf$_list_all
  2788. +/usr/lib/libdbm.sa(__libc.o):6008f214 A ____brk_addr
  2789. +/usr/lib/libdbm.sa(__libc.o):6008f01c A ___ctype_b
  2790. +/usr/lib/libdbm.sa(__libc.o):6008f020 A ___ctype_tolower
  2791. +/usr/lib/libdbm.sa(__libc.o):6008f024 A ___ctype_toupper
  2792. +/usr/lib/libdbm.sa(__libc.o):6008f1fc A ___environ
  2793. +/usr/lib/libdbm.sa(__libc.o):6008f250 A ___exit_funcs
  2794. +/usr/lib/libdbm.sa(__libc.o):6008f2f0 A ___glob_closedir_hook
  2795. +/usr/lib/libdbm.sa(__libc.o):6008f2f4 A ___glob_opendir_hook
  2796. +/usr/lib/libdbm.sa(__libc.o):6008f2f8 A ___glob_readdir_hook
  2797. +/usr/lib/libdbm.sa(__libc.o):6008f018 A ___new_handler
  2798. +/usr/lib/libdbm.sa(__libc.o):6008f1e4 A ___std_filebuf_0
  2799. +/usr/lib/libdbm.sa(__libc.o):6008f1e8 A ___std_filebuf_1
  2800. +/usr/lib/libdbm.sa(__libc.o):6008f1ec A ___std_filebuf_2
  2801. +/usr/lib/libdbm.sa(__libc.o):6008f278 A ___ttyname
  2802. +/usr/lib/libdbm.sa(__libc.o):6008f238 A __collate_info
  2803. +/usr/lib/libdbm.sa(__libc.o):6008f23c A __ctype_info
  2804. +/usr/lib/libdbm.sa(__libc.o):6008f028 A __echoit
  2805. +/usr/lib/libdbm.sa(__libc.o):6008f034 A __endwin
  2806. +/usr/lib/libdbm.sa(__libc.o):6008f288 A __gdbm_fetch_val
  2807. +/usr/lib/libdbm.sa(__libc.o):6008f280 A __gdbm_file
  2808. +/usr/lib/libdbm.sa(__libc.o):6008f284 A __gdbm_memory
  2809. +/usr/lib/libdbm.sa(__libc.o):6008f1f8 A __iob
  2810. +/usr/lib/libdbm.sa(__libc.o):6008f240 A __monetary_info
  2811. +/usr/lib/libdbm.sa(__libc.o):6008f234 A __null_auth
  2812. +/usr/lib/libdbm.sa(__libc.o):6008f244 A __numeric_info
  2813. +/usr/lib/libdbm.sa(__libc.o):6008f2ec A __obstack
  2814. +/usr/lib/libdbm.sa(__libc.o):6008f1c8 A __pfast
  2815. +/usr/lib/libdbm.sa(__libc.o):6008f02c A __rawmode
  2816. +/usr/lib/libdbm.sa(__libc.o):6008f1dc A __res
  2817. +/usr/lib/libdbm.sa(__libc.o):6008f04c A __res_iflg
  2818. +/usr/lib/libdbm.sa(__libc.o):6008f050 A __res_lflg
  2819. +/usr/lib/libdbm.sa(__libc.o):6008f270 A __res_opcodes
  2820. +/usr/lib/libdbm.sa(__libc.o):6008f274 A __res_resultcodes
  2821. +/usr/lib/libdbm.sa(__libc.o):6008f248 A __response_info
  2822. +/usr/lib/libdbm.sa(__libc.o):6008f2fc A __sigintr
  2823. +/usr/lib/libdbm.sa(__libc.o):6008f00c A __sys_errlist
  2824. +/usr/lib/libdbm.sa(__libc.o):6008f010 A __sys_nerr
  2825. +/usr/lib/libdbm.sa(__libc.o):6008f014 A __sys_siglist
  2826. +/usr/lib/libdbm.sa(__libc.o):6008f24c A __time_info
  2827. +/usr/lib/libdbm.sa(__libc.o):6008f05c A __tty
  2828. +/usr/lib/libdbm.sa(__libc.o):6008f040 A __tty_ch
  2829. +/usr/lib/libdbm.sa(__libc.o):6008f1cc A __unctrl
  2830. +/usr/lib/libdbm.sa(__libc.o):6008f2c8 A __vt$10istrstream$3ios
  2831. +/usr/lib/libdbm.sa(__libc.o):6008f2c4 A __vt$10ostrstream$3ios
  2832. +/usr/lib/libdbm.sa(__libc.o):6008f2e0 A __vt$11fstreambase$3ios
  2833. +/usr/lib/libdbm.sa(__libc.o):6008f2cc A __vt$13strstreambase$3ios
  2834. +/usr/lib/libdbm.sa(__libc.o):6008f2d4 A __vt$7fstream$3ios
  2835. +/usr/lib/libdbm.sa(__libc.o):6008f2ac A __vt$7ostream$3ios
  2836. +/usr/lib/libdbm.sa(__libc.o):6008f2dc A __vt$8ifstream$3ios
  2837. +/usr/lib/libdbm.sa(__libc.o):6008f2a4 A __vt$8iostream$3ios
  2838. +/usr/lib/libdbm.sa(__libc.o):6008f2d8 A __vt$8ofstream$3ios
  2839. +/usr/lib/libdbm.sa(__libc.o):6008f2c0 A __vt$9strstream$3ios
  2840. +/usr/lib/libdbm.sa(__libc.o):6008f2b4 A __vt$backupbuf
  2841. +/usr/lib/libdbm.sa(__libc.o):6008f2b0 A __vt$filebuf
  2842. +/usr/lib/libdbm.sa(__libc.o):6008f2bc A __vt$ios
  2843. +/usr/lib/libdbm.sa(__libc.o):6008f2a8 A __vt$istream$3ios
  2844. +/usr/lib/libdbm.sa(__libc.o):6008f2b8 A __vt$streambuf
  2845. +/usr/lib/libdbm.sa(__libc.o):6008f2d0 A __vt$strstreambuf
  2846. +/usr/lib/libdbm.sa(__libc.o):6008f27c A __win
  2847. +/usr/lib/libdbm.sa(__libc.o):6008f294 A _cerr
  2848. +/usr/lib/libdbm.sa(__libc.o):6008f298 A _cin
  2849. +/usr/lib/libdbm.sa(__libc.o):6008f29c A _clog
  2850. +/usr/lib/libdbm.sa(__libc.o):6008f290 A _cout
  2851. +/usr/lib/libdbm.sa(__libc.o):6008f058 A _curscr
  2852. +/usr/lib/libdbm.sa(__libc.o):6008f228 A _daylight
  2853. +/usr/lib/libdbm.sa(__libc.o):6008f200 A _errno
  2854. +/usr/lib/libdbm.sa(__libc.o):6008f1d0 A _gdbm_errno
  2855. +/usr/lib/libdbm.sa(__libc.o):6008f28c A _gdbm_version
  2856. +/usr/lib/libdbm.sa(__libc.o):6008f008 A _h_errlist
  2857. +/usr/lib/libdbm.sa(__libc.o):6008f1d8 A _h_errno
  2858. +/usr/lib/libdbm.sa(__libc.o):6008f2a0 A _h_nerr
  2859. +/usr/lib/libdbm.sa(__libc.o):6008f1c4 A _normtty
  2860. +/usr/lib/libdbm.sa(__libc.o):6008f1f0 A _not_open_filebuf
  2861. +/usr/lib/libdbm.sa(__libc.o):6008f204 A _optarg
  2862. +/usr/lib/libdbm.sa(__libc.o):6008f20c A _opterr
  2863. +/usr/lib/libdbm.sa(__libc.o):6008f208 A _optind
  2864. +/usr/lib/libdbm.sa(__libc.o):6008f2e4 A _optopt
  2865. +/usr/lib/libdbm.sa(__libc.o):6008f218 A _ospeed
  2866. +/usr/lib/libdbm.sa(__libc.o):6008f26c A _re_max_failures
  2867. +/usr/lib/libdbm.sa(__libc.o):6008f210 A _re_syntax_options
  2868. +/usr/lib/libdbm.sa(__libc.o):6008f1e0 A _rexecoptions
  2869. +/usr/lib/libdbm.sa(__libc.o):6008f230 A _rpc_createerr
  2870. +/usr/lib/libdbm.sa(__libc.o):6008f25c A _stderr
  2871. +/usr/lib/libdbm.sa(__libc.o):6008f254 A _stdin
  2872. +/usr/lib/libdbm.sa(__libc.o):6008f258 A _stdout
  2873. +/usr/lib/libdbm.sa(__libc.o):6008f054 A _stdscr
  2874. +/usr/lib/libdbm.sa(__libc.o):6008f2e8 A _svc_fdset
  2875. +/usr/lib/libdbm.sa(__libc.o):6008f224 A _timezone
  2876. +/usr/lib/libdbm.sa(__libc.o):6008f21c A _tputs_baud_rate
  2877. +/usr/lib/libdbm.sa(__libc.o):6008f038 A _ttytype
  2878. +/usr/lib/libdbm.sa(__libc.o):6008f220 A _tzname
  2879. +/usr/lib/libgcc.sa(__libc.o):00001000 a __GOT_SIZE
  2880. +/usr/lib/libgcc.sa(__libc.o):6008f0b0 A _AL
  2881. +/usr/lib/libgcc.sa(__libc.o):6008f198 A _AL_PARM
  2882. +/usr/lib/libgcc.sa(__libc.o):6008f060 A _AM
  2883. +/usr/lib/libgcc.sa(__libc.o):6008f0b4 A _BC
  2884. +/usr/lib/libgcc.sa(__libc.o):6008f064 A _BS
  2885. +/usr/lib/libgcc.sa(__libc.o):6008f0bc A _BT
  2886. +/usr/lib/libgcc.sa(__libc.o):6008f068 A _CA
  2887. +/usr/lib/libgcc.sa(__libc.o):6008f0c0 A _CD
  2888. +/usr/lib/libgcc.sa(__libc.o):6008f0c4 A _CE
  2889. +/usr/lib/libgcc.sa(__libc.o):6008f0c8 A _CL
  2890. +/usr/lib/libgcc.sa(__libc.o):6008f0cc A _CM
  2891. +/usr/lib/libgcc.sa(__libc.o):6008f048 A _COLS
  2892. +/usr/lib/libgcc.sa(__libc.o):6008f0d0 A _CR
  2893. +/usr/lib/libgcc.sa(__libc.o):6008f0d4 A _CS
  2894. +/usr/lib/libgcc.sa(__libc.o):6008f06c A _DA
  2895. +/usr/lib/libgcc.sa(__libc.o):6008f070 A _DB
  2896. +/usr/lib/libgcc.sa(__libc.o):6008f0d8 A _DC
  2897. +/usr/lib/libgcc.sa(__libc.o):6008f0dc A _DL
  2898. +/usr/lib/libgcc.sa(__libc.o):6008f19c A _DL_PARM
  2899. +/usr/lib/libgcc.sa(__libc.o):6008f0e0 A _DM
  2900. +/usr/lib/libgcc.sa(__libc.o):6008f0e4 A _DO
  2901. +/usr/lib/libgcc.sa(__libc.o):6008f1a4 A _DOWN_PARM
  2902. +/usr/lib/libgcc.sa(__libc.o):6008f03c A _Def_term
  2903. +/usr/lib/libgcc.sa(__libc.o):6008f0e8 A _ED
  2904. +/usr/lib/libgcc.sa(__libc.o):6008f0ec A _EI
  2905. +/usr/lib/libgcc.sa(__libc.o):6008f074 A _EO
  2906. +/usr/lib/libgcc.sa(__libc.o):6008f1b8 A _GT
  2907. +/usr/lib/libgcc.sa(__libc.o):6008f078 A _HC
  2908. +/usr/lib/libgcc.sa(__libc.o):6008f118 A _HO
  2909. +/usr/lib/libgcc.sa(__libc.o):6008f07c A _HZ
  2910. +/usr/lib/libgcc.sa(__libc.o):6008f11c A _IC
  2911. +/usr/lib/libgcc.sa(__libc.o):6008f120 A _IM
  2912. +/usr/lib/libgcc.sa(__libc.o):6008f080 A _IN
  2913. +/usr/lib/libgcc.sa(__libc.o):6008f124 A _IP
  2914. +/usr/lib/libgcc.sa(__libc.o):6008f0f0 A _K0
  2915. +/usr/lib/libgcc.sa(__libc.o):6008f0f4 A _K1
  2916. +/usr/lib/libgcc.sa(__libc.o):6008f0f8 A _K2
  2917. +/usr/lib/libgcc.sa(__libc.o):6008f0fc A _K3
  2918. +/usr/lib/libgcc.sa(__libc.o):6008f100 A _K4
  2919. +/usr/lib/libgcc.sa(__libc.o):6008f104 A _K5
  2920. +/usr/lib/libgcc.sa(__libc.o):6008f108 A _K6
  2921. +/usr/lib/libgcc.sa(__libc.o):6008f10c A _K7
  2922. +/usr/lib/libgcc.sa(__libc.o):6008f110 A _K8
  2923. +/usr/lib/libgcc.sa(__libc.o):6008f114 A _K9
  2924. +/usr/lib/libgcc.sa(__libc.o):6008f128 A _KD
  2925. +/usr/lib/libgcc.sa(__libc.o):6008f12c A _KE
  2926. +/usr/lib/libgcc.sa(__libc.o):6008f130 A _KH
  2927. +/usr/lib/libgcc.sa(__libc.o):6008f134 A _KL
  2928. +/usr/lib/libgcc.sa(__libc.o):6008f138 A _KR
  2929. +/usr/lib/libgcc.sa(__libc.o):6008f13c A _KS
  2930. +/usr/lib/libgcc.sa(__libc.o):6008f140 A _KU
  2931. +/usr/lib/libgcc.sa(__libc.o):6008f1a8 A _LEFT_PARM
  2932. +/usr/lib/libgcc.sa(__libc.o):6008f044 A _LINES
  2933. +/usr/lib/libgcc.sa(__libc.o):6008f144 A _LL
  2934. +/usr/lib/libgcc.sa(__libc.o):6008f148 A _MA
  2935. +/usr/lib/libgcc.sa(__libc.o):6008f084 A _MI
  2936. +/usr/lib/libgcc.sa(__libc.o):6008f088 A _MS
  2937. +/usr/lib/libgcc.sa(__libc.o):6008f030 A _My_term
  2938. +/usr/lib/libgcc.sa(__libc.o):6008f08c A _NC
  2939. +/usr/lib/libgcc.sa(__libc.o):6008f14c A _ND
  2940. +/usr/lib/libgcc.sa(__libc.o):6008f150 A _NL
  2941. +/usr/lib/libgcc.sa(__libc.o):6008f1bc A _NONL
  2942. +/usr/lib/libgcc.sa(__libc.o):6008f090 A _NS
  2943. +/usr/lib/libgcc.sa(__libc.o):6008f094 A _OS
  2944. +/usr/lib/libgcc.sa(__libc.o):6008f1b0 A _PC
  2945. +/usr/lib/libgcc.sa(__libc.o):6008f154 A _RC
  2946. +/usr/lib/libgcc.sa(__libc.o):6008f1ac A _RIGHT_PARM
  2947. +/usr/lib/libgcc.sa(__libc.o):6008f158 A _SC
  2948. +/usr/lib/libgcc.sa(__libc.o):6008f15c A _SE
  2949. +/usr/lib/libgcc.sa(__libc.o):6008f160 A _SF
  2950. +/usr/lib/libgcc.sa(__libc.o):6008f164 A _SO
  2951. +/usr/lib/libgcc.sa(__libc.o):6008f168 A _SR
  2952. +/usr/lib/libgcc.sa(__libc.o):6008f16c A _TA
  2953. +/usr/lib/libgcc.sa(__libc.o):6008f170 A _TE
  2954. +/usr/lib/libgcc.sa(__libc.o):6008f174 A _TI
  2955. +/usr/lib/libgcc.sa(__libc.o):6008f178 A _UC
  2956. +/usr/lib/libgcc.sa(__libc.o):6008f17c A _UE
  2957. +/usr/lib/libgcc.sa(__libc.o):6008f098 A _UL
  2958. +/usr/lib/libgcc.sa(__libc.o):6008f180 A _UP
  2959. +/usr/lib/libgcc.sa(__libc.o):6008f1c0 A _UPPERCASE
  2960. +/usr/lib/libgcc.sa(__libc.o):6008f1a0 A _UP_PARM
  2961. +/usr/lib/libgcc.sa(__libc.o):6008f188 A _US
  2962. +/usr/lib/libgcc.sa(__libc.o):6008f18c A _VB
  2963. +/usr/lib/libgcc.sa(__libc.o):6008f194 A _VE
  2964. +/usr/lib/libgcc.sa(__libc.o):6008f190 A _VS
  2965. +/usr/lib/libgcc.sa(__libc.o):6008f09c A _XB
  2966. +/usr/lib/libgcc.sa(__libc.o):6008f0a0 A _XN
  2967. +/usr/lib/libgcc.sa(__libc.o):6008f0a8 A _XS
  2968. +/usr/lib/libgcc.sa(__libc.o):6008f0a4 A _XT
  2969. +/usr/lib/libgcc.sa(__libc.o):6008f0ac A _XX
  2970. +/usr/lib/libgcc.sa(__libc.o):6008f1f4 A __9streambuf$_list_all
  2971. +/usr/lib/libgcc.sa(__libc.o):6008f214 A ____brk_addr
  2972. +/usr/lib/libgcc.sa(__libc.o):6008f01c A ___ctype_b
  2973. +/usr/lib/libgcc.sa(__libc.o):6008f020 A ___ctype_tolower
  2974. +/usr/lib/libgcc.sa(__libc.o):6008f024 A ___ctype_toupper
  2975. +/usr/lib/libgcc.sa(__libc.o):6008f1fc A ___environ
  2976. +/usr/lib/libgcc.sa(__libc.o):6008f250 A ___exit_funcs
  2977. +/usr/lib/libgcc.sa(__libc.o):6008f2f0 A ___glob_closedir_hook
  2978. +/usr/lib/libgcc.sa(__libc.o):6008f2f4 A ___glob_opendir_hook
  2979. +/usr/lib/libgcc.sa(__libc.o):6008f2f8 A ___glob_readdir_hook
  2980. +/usr/lib/libgcc.sa(__libc.o):6008f018 A ___new_handler
  2981. +/usr/lib/libgcc.sa(__libc.o):6008f1e4 A ___std_filebuf_0
  2982. +/usr/lib/libgcc.sa(__libc.o):6008f1e8 A ___std_filebuf_1
  2983. +/usr/lib/libgcc.sa(__libc.o):6008f1ec A ___std_filebuf_2
  2984. +/usr/lib/libgcc.sa(__libc.o):6008f278 A ___ttyname
  2985. +/usr/lib/libgcc.sa(__libc.o):6008f238 A __collate_info
  2986. +/usr/lib/libgcc.sa(__libc.o):6008f23c A __ctype_info
  2987. +/usr/lib/libgcc.sa(__libc.o):6008f028 A __echoit
  2988. +/usr/lib/libgcc.sa(__libc.o):6008f034 A __endwin
  2989. +/usr/lib/libgcc.sa(__libc.o):6008f288 A __gdbm_fetch_val
  2990. +/usr/lib/libgcc.sa(__libc.o):6008f280 A __gdbm_file
  2991. +/usr/lib/libgcc.sa(__libc.o):6008f284 A __gdbm_memory
  2992. +/usr/lib/libgcc.sa(__libc.o):6008f1f8 A __iob
  2993. +/usr/lib/libgcc.sa(__libc.o):6008f240 A __monetary_info
  2994. +/usr/lib/libgcc.sa(__libc.o):6008f234 A __null_auth
  2995. +/usr/lib/libgcc.sa(__libc.o):6008f244 A __numeric_info
  2996. +/usr/lib/libgcc.sa(__libc.o):6008f2ec A __obstack
  2997. +/usr/lib/libgcc.sa(__libc.o):6008f1c8 A __pfast
  2998. +/usr/lib/libgcc.sa(__libc.o):6008f02c A __rawmode
  2999. +/usr/lib/libgcc.sa(__libc.o):6008f1dc A __res
  3000. +/usr/lib/libgcc.sa(__libc.o):6008f04c A __res_iflg
  3001. +/usr/lib/libgcc.sa(__libc.o):6008f050 A __res_lflg
  3002. +/usr/lib/libgcc.sa(__libc.o):6008f270 A __res_opcodes
  3003. +/usr/lib/libgcc.sa(__libc.o):6008f274 A __res_resultcodes
  3004. +/usr/lib/libgcc.sa(__libc.o):6008f248 A __response_info
  3005. +/usr/lib/libgcc.sa(__libc.o):6008f2fc A __sigintr
  3006. +/usr/lib/libgcc.sa(__libc.o):6008f00c A __sys_errlist
  3007. +/usr/lib/libgcc.sa(__libc.o):6008f010 A __sys_nerr
  3008. +/usr/lib/libgcc.sa(__libc.o):6008f014 A __sys_siglist
  3009. +/usr/lib/libgcc.sa(__libc.o):6008f24c A __time_info
  3010. +/usr/lib/libgcc.sa(__libc.o):6008f05c A __tty
  3011. +/usr/lib/libgcc.sa(__libc.o):6008f040 A __tty_ch
  3012. +/usr/lib/libgcc.sa(__libc.o):6008f1cc A __unctrl
  3013. +/usr/lib/libgcc.sa(__libc.o):6008f2c8 A __vt$10istrstream$3ios
  3014. +/usr/lib/libgcc.sa(__libc.o):6008f2c4 A __vt$10ostrstream$3ios
  3015. +/usr/lib/libgcc.sa(__libc.o):6008f2e0 A __vt$11fstreambase$3ios
  3016. +/usr/lib/libgcc.sa(__libc.o):6008f2cc A __vt$13strstreambase$3ios
  3017. +/usr/lib/libgcc.sa(__libc.o):6008f2d4 A __vt$7fstream$3ios
  3018. +/usr/lib/libgcc.sa(__libc.o):6008f2ac A __vt$7ostream$3ios
  3019. +/usr/lib/libgcc.sa(__libc.o):6008f2dc A __vt$8ifstream$3ios
  3020. +/usr/lib/libgcc.sa(__libc.o):6008f2a4 A __vt$8iostream$3ios
  3021. +/usr/lib/libgcc.sa(__libc.o):6008f2d8 A __vt$8ofstream$3ios
  3022. +/usr/lib/libgcc.sa(__libc.o):6008f2c0 A __vt$9strstream$3ios
  3023. +/usr/lib/libgcc.sa(__libc.o):6008f2b4 A __vt$backupbuf
  3024. +/usr/lib/libgcc.sa(__libc.o):6008f2b0 A __vt$filebuf
  3025. +/usr/lib/libgcc.sa(__libc.o):6008f2bc A __vt$ios
  3026. +/usr/lib/libgcc.sa(__libc.o):6008f2a8 A __vt$istream$3ios
  3027. +/usr/lib/libgcc.sa(__libc.o):6008f2b8 A __vt$streambuf
  3028. +/usr/lib/libgcc.sa(__libc.o):6008f2d0 A __vt$strstreambuf
  3029. +/usr/lib/libgcc.sa(__libc.o):6008f27c A __win
  3030. +/usr/lib/libgcc.sa(__libc.o):6008f294 A _cerr
  3031. +/usr/lib/libgcc.sa(__libc.o):6008f298 A _cin
  3032. +/usr/lib/libgcc.sa(__libc.o):6008f29c A _clog
  3033. +/usr/lib/libgcc.sa(__libc.o):6008f290 A _cout
  3034. +/usr/lib/libgcc.sa(__libc.o):6008f058 A _curscr
  3035. +/usr/lib/libgcc.sa(__libc.o):6008f228 A _daylight
  3036. +/usr/lib/libgcc.sa(__libc.o):6008f200 A _errno
  3037. +/usr/lib/libgcc.sa(__libc.o):6008f1d0 A _gdbm_errno
  3038. +/usr/lib/libgcc.sa(__libc.o):6008f28c A _gdbm_version
  3039. +/usr/lib/libgcc.sa(__libc.o):6008f008 A _h_errlist
  3040. +/usr/lib/libgcc.sa(__libc.o):6008f1d8 A _h_errno
  3041. +/usr/lib/libgcc.sa(__libc.o):6008f2a0 A _h_nerr
  3042. +/usr/lib/libgcc.sa(__libc.o):6008f1c4 A _normtty
  3043. +/usr/lib/libgcc.sa(__libc.o):6008f1f0 A _not_open_filebuf
  3044. +/usr/lib/libgcc.sa(__libc.o):6008f204 A _optarg
  3045. +/usr/lib/libgcc.sa(__libc.o):6008f20c A _opterr
  3046. +/usr/lib/libgcc.sa(__libc.o):6008f208 A _optind
  3047. +/usr/lib/libgcc.sa(__libc.o):6008f2e4 A _optopt
  3048. +/usr/lib/libgcc.sa(__libc.o):6008f218 A _ospeed
  3049. +/usr/lib/libgcc.sa(__libc.o):6008f26c A _re_max_failures
  3050. +/usr/lib/libgcc.sa(__libc.o):6008f210 A _re_syntax_options
  3051. +/usr/lib/libgcc.sa(__libc.o):6008f1e0 A _rexecoptions
  3052. +/usr/lib/libgcc.sa(__libc.o):6008f230 A _rpc_createerr
  3053. +/usr/lib/libgcc.sa(__libc.o):6008f25c A _stderr
  3054. +/usr/lib/libgcc.sa(__libc.o):6008f254 A _stdin
  3055. +/usr/lib/libgcc.sa(__libc.o):6008f258 A _stdout
  3056. +/usr/lib/libgcc.sa(__libc.o):6008f054 A _stdscr
  3057. +/usr/lib/libgcc.sa(__libc.o):6008f2e8 A _svc_fdset
  3058. +/usr/lib/libgcc.sa(__libc.o):6008f224 A _timezone
  3059. +/usr/lib/libgcc.sa(__libc.o):6008f21c A _tputs_baud_rate
  3060. +/usr/lib/libgcc.sa(__libc.o):6008f038 A _ttytype
  3061. +/usr/lib/libgcc.sa(__libc.o):6008f220 A _tzname
  3062. +/usr/lib/libm.sa(__libm.o):00000100 a __GOT_SIZE
  3063. +/usr/lib/libm.sa(__libm.o):600f7f08 A _signgam
  3064. +/usr/lib/libtermcap.sa(__libc.o):00001000 a __GOT_SIZE
  3065. +/usr/lib/libtermcap.sa(__libc.o):6008f0b0 A _AL
  3066. +/usr/lib/libtermcap.sa(__libc.o):6008f198 A _AL_PARM
  3067. +/usr/lib/libtermcap.sa(__libc.o):6008f060 A _AM
  3068. +/usr/lib/libtermcap.sa(__libc.o):6008f0b4 A _BC
  3069. +/usr/lib/libtermcap.sa(__libc.o):6008f064 A _BS
  3070. +/usr/lib/libtermcap.sa(__libc.o):6008f0bc A _BT
  3071. +/usr/lib/libtermcap.sa(__libc.o):6008f068 A _CA
  3072. +/usr/lib/libtermcap.sa(__libc.o):6008f0c0 A _CD
  3073. +/usr/lib/libtermcap.sa(__libc.o):6008f0c4 A _CE
  3074. +/usr/lib/libtermcap.sa(__libc.o):6008f0c8 A _CL
  3075. +/usr/lib/libtermcap.sa(__libc.o):6008f0cc A _CM
  3076. +/usr/lib/libtermcap.sa(__libc.o):6008f048 A _COLS
  3077. +/usr/lib/libtermcap.sa(__libc.o):6008f0d0 A _CR
  3078. +/usr/lib/libtermcap.sa(__libc.o):6008f0d4 A _CS
  3079. +/usr/lib/libtermcap.sa(__libc.o):6008f06c A _DA
  3080. +/usr/lib/libtermcap.sa(__libc.o):6008f070 A _DB
  3081. +/usr/lib/libtermcap.sa(__libc.o):6008f0d8 A _DC
  3082. +/usr/lib/libtermcap.sa(__libc.o):6008f0dc A _DL
  3083. +/usr/lib/libtermcap.sa(__libc.o):6008f19c A _DL_PARM
  3084. +/usr/lib/libtermcap.sa(__libc.o):6008f0e0 A _DM
  3085. +/usr/lib/libtermcap.sa(__libc.o):6008f0e4 A _DO
  3086. +/usr/lib/libtermcap.sa(__libc.o):6008f1a4 A _DOWN_PARM
  3087. +/usr/lib/libtermcap.sa(__libc.o):6008f03c A _Def_term
  3088. +/usr/lib/libtermcap.sa(__libc.o):6008f0e8 A _ED
  3089. +/usr/lib/libtermcap.sa(__libc.o):6008f0ec A _EI
  3090. +/usr/lib/libtermcap.sa(__libc.o):6008f074 A _EO
  3091. +/usr/lib/libtermcap.sa(__libc.o):6008f1b8 A _GT
  3092. +/usr/lib/libtermcap.sa(__libc.o):6008f078 A _HC
  3093. +/usr/lib/libtermcap.sa(__libc.o):6008f118 A _HO
  3094. +/usr/lib/libtermcap.sa(__libc.o):6008f07c A _HZ
  3095. +/usr/lib/libtermcap.sa(__libc.o):6008f11c A _IC
  3096. +/usr/lib/libtermcap.sa(__libc.o):6008f120 A _IM
  3097. +/usr/lib/libtermcap.sa(__libc.o):6008f080 A _IN
  3098. +/usr/lib/libtermcap.sa(__libc.o):6008f124 A _IP
  3099. +/usr/lib/libtermcap.sa(__libc.o):6008f0f0 A _K0
  3100. +/usr/lib/libtermcap.sa(__libc.o):6008f0f4 A _K1
  3101. +/usr/lib/libtermcap.sa(__libc.o):6008f0f8 A _K2
  3102. +/usr/lib/libtermcap.sa(__libc.o):6008f0fc A _K3
  3103. +/usr/lib/libtermcap.sa(__libc.o):6008f100 A _K4
  3104. +/usr/lib/libtermcap.sa(__libc.o):6008f104 A _K5
  3105. +/usr/lib/libtermcap.sa(__libc.o):6008f108 A _K6
  3106. +/usr/lib/libtermcap.sa(__libc.o):6008f10c A _K7
  3107. +/usr/lib/libtermcap.sa(__libc.o):6008f110 A _K8
  3108. +/usr/lib/libtermcap.sa(__libc.o):6008f114 A _K9
  3109. +/usr/lib/libtermcap.sa(__libc.o):6008f128 A _KD
  3110. +/usr/lib/libtermcap.sa(__libc.o):6008f12c A _KE
  3111. +/usr/lib/libtermcap.sa(__libc.o):6008f130 A _KH
  3112. +/usr/lib/libtermcap.sa(__libc.o):6008f134 A _KL
  3113. +/usr/lib/libtermcap.sa(__libc.o):6008f138 A _KR
  3114. +/usr/lib/libtermcap.sa(__libc.o):6008f13c A _KS
  3115. +/usr/lib/libtermcap.sa(__libc.o):6008f140 A _KU
  3116. +/usr/lib/libtermcap.sa(__libc.o):6008f1a8 A _LEFT_PARM
  3117. +/usr/lib/libtermcap.sa(__libc.o):6008f044 A _LINES
  3118. +/usr/lib/libtermcap.sa(__libc.o):6008f144 A _LL
  3119. +/usr/lib/libtermcap.sa(__libc.o):6008f148 A _MA
  3120. +/usr/lib/libtermcap.sa(__libc.o):6008f084 A _MI
  3121. +/usr/lib/libtermcap.sa(__libc.o):6008f088 A _MS
  3122. +/usr/lib/libtermcap.sa(__libc.o):6008f030 A _My_term
  3123. +/usr/lib/libtermcap.sa(__libc.o):6008f08c A _NC
  3124. +/usr/lib/libtermcap.sa(__libc.o):6008f14c A _ND
  3125. +/usr/lib/libtermcap.sa(__libc.o):6008f150 A _NL
  3126. +/usr/lib/libtermcap.sa(__libc.o):6008f1bc A _NONL
  3127. +/usr/lib/libtermcap.sa(__libc.o):6008f090 A _NS
  3128. +/usr/lib/libtermcap.sa(__libc.o):6008f094 A _OS
  3129. +/usr/lib/libtermcap.sa(__libc.o):6008f1b0 A _PC
  3130. +/usr/lib/libtermcap.sa(__libc.o):6008f154 A _RC
  3131. +/usr/lib/libtermcap.sa(__libc.o):6008f1ac A _RIGHT_PARM
  3132. +/usr/lib/libtermcap.sa(__libc.o):6008f158 A _SC
  3133. +/usr/lib/libtermcap.sa(__libc.o):6008f15c A _SE
  3134. +/usr/lib/libtermcap.sa(__libc.o):6008f160 A _SF
  3135. +/usr/lib/libtermcap.sa(__libc.o):6008f164 A _SO
  3136. +/usr/lib/libtermcap.sa(__libc.o):6008f168 A _SR
  3137. +/usr/lib/libtermcap.sa(__libc.o):6008f16c A _TA
  3138. +/usr/lib/libtermcap.sa(__libc.o):6008f170 A _TE
  3139. +/usr/lib/libtermcap.sa(__libc.o):6008f174 A _TI
  3140. +/usr/lib/libtermcap.sa(__libc.o):6008f178 A _UC
  3141. +/usr/lib/libtermcap.sa(__libc.o):6008f17c A _UE
  3142. +/usr/lib/libtermcap.sa(__libc.o):6008f098 A _UL
  3143. +/usr/lib/libtermcap.sa(__libc.o):6008f180 A _UP
  3144. +/usr/lib/libtermcap.sa(__libc.o):6008f1c0 A _UPPERCASE
  3145. +/usr/lib/libtermcap.sa(__libc.o):6008f1a0 A _UP_PARM
  3146. +/usr/lib/libtermcap.sa(__libc.o):6008f188 A _US
  3147. +/usr/lib/libtermcap.sa(__libc.o):6008f18c A _VB
  3148. +/usr/lib/libtermcap.sa(__libc.o):6008f194 A _VE
  3149. +/usr/lib/libtermcap.sa(__libc.o):6008f190 A _VS
  3150. +/usr/lib/libtermcap.sa(__libc.o):6008f09c A _XB
  3151. +/usr/lib/libtermcap.sa(__libc.o):6008f0a0 A _XN
  3152. +/usr/lib/libtermcap.sa(__libc.o):6008f0a8 A _XS
  3153. +/usr/lib/libtermcap.sa(__libc.o):6008f0a4 A _XT
  3154. +/usr/lib/libtermcap.sa(__libc.o):6008f0ac A _XX
  3155. +/usr/lib/libtermcap.sa(__libc.o):6008f1f4 A __9streambuf$_list_all
  3156. +/usr/lib/libtermcap.sa(__libc.o):6008f214 A ____brk_addr
  3157. +/usr/lib/libtermcap.sa(__libc.o):6008f01c A ___ctype_b
  3158. +/usr/lib/libtermcap.sa(__libc.o):6008f020 A ___ctype_tolower
  3159. +/usr/lib/libtermcap.sa(__libc.o):6008f024 A ___ctype_toupper
  3160. +/usr/lib/libtermcap.sa(__libc.o):6008f1fc A ___environ
  3161. +/usr/lib/libtermcap.sa(__libc.o):6008f250 A ___exit_funcs
  3162. +/usr/lib/libtermcap.sa(__libc.o):6008f2f0 A ___glob_closedir_hook
  3163. +/usr/lib/libtermcap.sa(__libc.o):6008f2f4 A ___glob_opendir_hook
  3164. +/usr/lib/libtermcap.sa(__libc.o):6008f2f8 A ___glob_readdir_hook
  3165. +/usr/lib/libtermcap.sa(__libc.o):6008f018 A ___new_handler
  3166. +/usr/lib/libtermcap.sa(__libc.o):6008f1e4 A ___std_filebuf_0
  3167. +/usr/lib/libtermcap.sa(__libc.o):6008f1e8 A ___std_filebuf_1
  3168. +/usr/lib/libtermcap.sa(__libc.o):6008f1ec A ___std_filebuf_2
  3169. +/usr/lib/libtermcap.sa(__libc.o):6008f278 A ___ttyname
  3170. +/usr/lib/libtermcap.sa(__libc.o):6008f238 A __collate_info
  3171. +/usr/lib/libtermcap.sa(__libc.o):6008f23c A __ctype_info
  3172. +/usr/lib/libtermcap.sa(__libc.o):6008f028 A __echoit
  3173. +/usr/lib/libtermcap.sa(__libc.o):6008f034 A __endwin
  3174. +/usr/lib/libtermcap.sa(__libc.o):6008f288 A __gdbm_fetch_val
  3175. +/usr/lib/libtermcap.sa(__libc.o):6008f280 A __gdbm_file
  3176. +/usr/lib/libtermcap.sa(__libc.o):6008f284 A __gdbm_memory
  3177. +/usr/lib/libtermcap.sa(__libc.o):6008f1f8 A __iob
  3178. +/usr/lib/libtermcap.sa(__libc.o):6008f240 A __monetary_info
  3179. +/usr/lib/libtermcap.sa(__libc.o):6008f234 A __null_auth
  3180. +/usr/lib/libtermcap.sa(__libc.o):6008f244 A __numeric_info
  3181. +/usr/lib/libtermcap.sa(__libc.o):6008f2ec A __obstack
  3182. +/usr/lib/libtermcap.sa(__libc.o):6008f1c8 A __pfast
  3183. +/usr/lib/libtermcap.sa(__libc.o):6008f02c A __rawmode
  3184. +/usr/lib/libtermcap.sa(__libc.o):6008f1dc A __res
  3185. +/usr/lib/libtermcap.sa(__libc.o):6008f04c A __res_iflg
  3186. +/usr/lib/libtermcap.sa(__libc.o):6008f050 A __res_lflg
  3187. +/usr/lib/libtermcap.sa(__libc.o):6008f270 A __res_opcodes
  3188. +/usr/lib/libtermcap.sa(__libc.o):6008f274 A __res_resultcodes
  3189. +/usr/lib/libtermcap.sa(__libc.o):6008f248 A __response_info
  3190. +/usr/lib/libtermcap.sa(__libc.o):6008f2fc A __sigintr
  3191. +/usr/lib/libtermcap.sa(__libc.o):6008f00c A __sys_errlist
  3192. +/usr/lib/libtermcap.sa(__libc.o):6008f010 A __sys_nerr
  3193. +/usr/lib/libtermcap.sa(__libc.o):6008f014 A __sys_siglist
  3194. +/usr/lib/libtermcap.sa(__libc.o):6008f24c A __time_info
  3195. +/usr/lib/libtermcap.sa(__libc.o):6008f05c A __tty
  3196. +/usr/lib/libtermcap.sa(__libc.o):6008f040 A __tty_ch
  3197. +/usr/lib/libtermcap.sa(__libc.o):6008f1cc A __unctrl
  3198. +/usr/lib/libtermcap.sa(__libc.o):6008f2c8 A __vt$10istrstream$3ios
  3199. +/usr/lib/libtermcap.sa(__libc.o):6008f2c4 A __vt$10ostrstream$3ios
  3200. +/usr/lib/libtermcap.sa(__libc.o):6008f2e0 A __vt$11fstreambase$3ios
  3201. +/usr/lib/libtermcap.sa(__libc.o):6008f2cc A __vt$13strstreambase$3ios
  3202. +/usr/lib/libtermcap.sa(__libc.o):6008f2d4 A __vt$7fstream$3ios
  3203. +/usr/lib/libtermcap.sa(__libc.o):6008f2ac A __vt$7ostream$3ios
  3204. +/usr/lib/libtermcap.sa(__libc.o):6008f2dc A __vt$8ifstream$3ios
  3205. +/usr/lib/libtermcap.sa(__libc.o):6008f2a4 A __vt$8iostream$3ios
  3206. +/usr/lib/libtermcap.sa(__libc.o):6008f2d8 A __vt$8ofstream$3ios
  3207. +/usr/lib/libtermcap.sa(__libc.o):6008f2c0 A __vt$9strstream$3ios
  3208. +/usr/lib/libtermcap.sa(__libc.o):6008f2b4 A __vt$backupbuf
  3209. +/usr/lib/libtermcap.sa(__libc.o):6008f2b0 A __vt$filebuf
  3210. +/usr/lib/libtermcap.sa(__libc.o):6008f2bc A __vt$ios
  3211. +/usr/lib/libtermcap.sa(__libc.o):6008f2a8 A __vt$istream$3ios
  3212. +/usr/lib/libtermcap.sa(__libc.o):6008f2b8 A __vt$streambuf
  3213. +/usr/lib/libtermcap.sa(__libc.o):6008f2d0 A __vt$strstreambuf
  3214. +/usr/lib/libtermcap.sa(__libc.o):6008f27c A __win
  3215. +/usr/lib/libtermcap.sa(__libc.o):6008f294 A _cerr
  3216. +/usr/lib/libtermcap.sa(__libc.o):6008f298 A _cin
  3217. +/usr/lib/libtermcap.sa(__libc.o):6008f29c A _clog
  3218. +/usr/lib/libtermcap.sa(__libc.o):6008f290 A _cout
  3219. +/usr/lib/libtermcap.sa(__libc.o):6008f058 A _curscr
  3220. +/usr/lib/libtermcap.sa(__libc.o):6008f228 A _daylight
  3221. +/usr/lib/libtermcap.sa(__libc.o):6008f200 A _errno
  3222. +/usr/lib/libtermcap.sa(__libc.o):6008f1d0 A _gdbm_errno
  3223. +/usr/lib/libtermcap.sa(__libc.o):6008f28c A _gdbm_version
  3224. +/usr/lib/libtermcap.sa(__libc.o):6008f008 A _h_errlist
  3225. +/usr/lib/libtermcap.sa(__libc.o):6008f1d8 A _h_errno
  3226. +/usr/lib/libtermcap.sa(__libc.o):6008f2a0 A _h_nerr
  3227. +/usr/lib/libtermcap.sa(__libc.o):6008f1c4 A _normtty
  3228. +/usr/lib/libtermcap.sa(__libc.o):6008f1f0 A _not_open_filebuf
  3229. +/usr/lib/libtermcap.sa(__libc.o):6008f204 A _optarg
  3230. +/usr/lib/libtermcap.sa(__libc.o):6008f20c A _opterr
  3231. +/usr/lib/libtermcap.sa(__libc.o):6008f208 A _optind
  3232. +/usr/lib/libtermcap.sa(__libc.o):6008f2e4 A _optopt
  3233. +/usr/lib/libtermcap.sa(__libc.o):6008f218 A _ospeed
  3234. +/usr/lib/libtermcap.sa(__libc.o):6008f26c A _re_max_failures
  3235. +/usr/lib/libtermcap.sa(__libc.o):6008f210 A _re_syntax_options
  3236. +/usr/lib/libtermcap.sa(__libc.o):6008f1e0 A _rexecoptions
  3237. +/usr/lib/libtermcap.sa(__libc.o):6008f230 A _rpc_createerr
  3238. +/usr/lib/libtermcap.sa(__libc.o):6008f25c A _stderr
  3239. +/usr/lib/libtermcap.sa(__libc.o):6008f254 A _stdin
  3240. +/usr/lib/libtermcap.sa(__libc.o):6008f258 A _stdout
  3241. +/usr/lib/libtermcap.sa(__libc.o):6008f054 A _stdscr
  3242. +/usr/lib/libtermcap.sa(__libc.o):6008f2e8 A _svc_fdset
  3243. +/usr/lib/libtermcap.sa(__libc.o):6008f224 A _timezone
  3244. +/usr/lib/libtermcap.sa(__libc.o):6008f21c A _tputs_baud_rate
  3245. +/usr/lib/libtermcap.sa(__libc.o):6008f038 A _ttytype
  3246. +/usr/lib/libtermcap.sa(__libc.o):6008f220 A _tzname
  3247. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/jump/jump.vars isode-8.0/jump/jump.vars
  3248. --- old/isode-8.0/jump/jump.vars    Thu Jan  1 01:00:00 1970
  3249. +++ isode-8.0/jump/jump.vars    Thu Aug 26 15:46:06 1993
  3250. @@ -0,0 +1,325 @@
  3251. +00000018 D __ZptrtabRONOT       libisode       RONOT_tables
  3252. +00000024 D __ZRONOT_mod         libisode       RONOT_tables
  3253. +00000004 D _ronotversion        libisode       ronotvrsn
  3254. +00000074 D __ZptrtabROS         libisode       ROS_tables
  3255. +00000024 D __ZROS_mod           libisode       ROS_tables
  3256. +00000004 C _rosap_operation     libisode       ROS_tables
  3257. +00000004 C _rosap_error         libisode       ROS_tables
  3258. +00000004 C _rosap_type          libisode       ROS_tables
  3259. +00000004 C _rosap_id            libisode       ROS_tables
  3260. +00000004 C _rosap_null          libisode       ROS_tables
  3261. +00000004 C _rosap_linked        libisode       ROS_tables
  3262. +00000004 C _rosap_lnull         libisode       ROS_tables
  3263. +00000004 C _rosap_data          libisode       ROS_tables
  3264. +00000004 C _rosap_reason        libisode       ROS_tables
  3265. +00000004 D _rosapversion        libisode       rosapvrsn
  3266. +0000008c D __ZptrtabRTS         libisode       RTS_tables
  3267. +00000024 D __ZRTS_mod           libisode       RTS_tables
  3268. +00000004 C _rtsap_priority      libisode       RTS_tables
  3269. +00000004 D _rtsapversion        libisode       rtsapvrsn
  3270. +00000004 D _acsap_lookup        libisode       acsapdse
  3271. +000000d8 D __ZptrtabACS         libisode       ACS_tables
  3272. +00000024 D __ZACS_mod           libisode       ACS_tables
  3273. +00000068 D __ZptrtabOACS        libisode       OACS_tables
  3274. +00000024 D __ZOACS_mod          libisode       OACS_tables
  3275. +00000014 D __ZptrtabDSE         libisode       DSE_tables
  3276. +00000024 D __ZDSE_mod           libisode       DSE_tables
  3277. +00000078 D __ZptrtabDASE        libisode       DASE_tables
  3278. +00000024 D __ZDASE_mod          libisode       DASE_tables
  3279. +00000004 D _acsapversion        libisode       acsapvrsn
  3280. +00000018 D _preq_pairs          libisode       psaprovider
  3281. +00000060 D _sreq_pairs          libisode       psaprovider
  3282. +0000013c D __ZptrtabPS          libisode       PS_tables
  3283. +00000024 D __ZPS_mod            libisode       PS_tables
  3284. +00000004 D _psap2version        libisode       psap2vrsn
  3285. +00000004 D _NullParm            libisode       UPEPY-52
  3286. +00000004 D _xlevel              libisode       prnt
  3287. +00000004 D _tabed               libisode       prnt
  3288. +00000004 D _xpushed             libisode       prnt
  3289. +00000004 D _vfnx                libisode       vprint
  3290. +00000004 D _vfp                 libisode       vprint
  3291. +00000060 D __ZptrtabUNIV        libisode       UNIV_tables
  3292. +00000024 D __ZUNIV_mod          libisode       UNIV_tables
  3293. +0000005c D _pepy_strings        libisode       pepsy_str
  3294. +00000400 D _PY_pepy             libisode       py_advise
  3295. +00000030 D _dmsize              libisode       gtime
  3296. +00000004 C _Len                 libisode       pe2qb_f
  3297. +00000004 C _Qcp                 libisode       pe2qb_f
  3298. +00000004 C _Ecp                 libisode       pe2qb_f
  3299. +00000004 D _pe_list             libisode       pe_alloc
  3300. +00000004 C _pe_allocs           libisode       pe_alloc
  3301. +00000004 C _pe_frees            libisode       pe_alloc
  3302. +00000004 C _pe_most             libisode       pe_alloc
  3303. +00000010 D _pe_classlist        libisode       pl_tables
  3304. +00000004 D _pe_maxclass         libisode       pl_tables
  3305. +00000074 D _pe_univlist         libisode       pl_tables
  3306. +00000004 D _pe_maxuniv          libisode       pl_tables
  3307. +00000004 D _pe_maxappl          libisode       pl_tables
  3308. +00000004 D _pe_applist          libisode       pl_tables
  3309. +00000004 D _pe_maxpriv          libisode       pl_tables
  3310. +00000004 D _pe_privlist         libisode       pl_tables
  3311. +00000004 D _ps_len_strategy     libisode       ps_get_abs
  3312. +00000004 D _Byteno              libisode       qbuf2pe_f
  3313. +00000004 D _Qbrefs              libisode       qbuf2pe_f
  3314. +00000004 D _Hqb                 libisode       qbuf2pe_f
  3315. +00000004 D _Fqb                 libisode       qbuf2pe_f
  3316. +00000004 D _Qb                  libisode       qbuf2pe_f
  3317. +00000004 D _psapversion         libisode       psapvrsn
  3318. +00000004 D _ssapversion         libisode       ssapvrsn
  3319. +00000004 D __listen_opts        libisode       tsaplisten
  3320. +00000004 D _tsapversion         libisode       tsapvrsn
  3321. +00000004 D _direntversion       libisode       direntvrsn
  3322. +00000004 D _xselect_blocking_on_intr libisode       select
  3323. +00000004 D __iosignals_set      libisode       signals
  3324. +00000080 D _hex2nib             libisode       implode
  3325. +00000004 D _isodename           libisode       tailor
  3326. +00000004 D _isodebinpath        libisode       tailor
  3327. +00000004 D _isodesbinpath       libisode       tailor
  3328. +00000004 D _isodetcpath         libisode       tailor
  3329. +00000004 D _isodelogpath        libisode       tailor
  3330. +00000004 D __tailor_logging_only libisode       tailor
  3331. +00000020 D __compat_log         libisode       tailor
  3332. +00000004 D _compat_log          libisode       tailor
  3333. +00000020 D __addr_log           libisode       tailor
  3334. +00000004 D _addr_log            libisode       tailor
  3335. +00000020 D __tsap_log           libisode       tailor
  3336. +00000004 D _tsap_log            libisode       tailor
  3337. +00000020 D __ssap_log           libisode       tailor
  3338. +00000004 D _ssap_log            libisode       tailor
  3339. +00000020 D __psap_log           libisode       tailor
  3340. +00000004 D _psap_log            libisode       tailor
  3341. +00000020 D __psap2_log          libisode       tailor
  3342. +00000004 D _psap2_log           libisode       tailor
  3343. +00000020 D __acsap_log          libisode       tailor
  3344. +00000004 D _acsap_log           libisode       tailor
  3345. +00000020 D __rtsap_log          libisode       tailor
  3346. +00000004 D _rtsap_log           libisode       tailor
  3347. +00000020 D __rosap_log          libisode       tailor
  3348. +00000004 D _rosap_log           libisode       tailor
  3349. +00000004 D _ts_stacks           libisode       tailor
  3350. +000002a8 D _ts_interim          libisode       tailor
  3351. +00000004 D _ts_comm_nsap_default libisode       tailor
  3352. +00000004 D _ts_comm_x25_default libisode       tailor
  3353. +00000004 D _ts_comm_tcp_default libisode       tailor
  3354. +00000004 D _tsb_default_address libisode       tailor
  3355. +00000004 D _local_nsap          libisode       tailor
  3356. +00000004 D _nsap_default_stack  libisode       tailor
  3357. +00000004 D _ses_ab_timer        libisode       tailor
  3358. +00000004 D _ses_dn_timer        libisode       tailor
  3359. +00000004 D _ses_rf_timer        libisode       tailor
  3360. +00000004 D _ns_enabled          libisode       tailor
  3361. +00000004 D _ns_address          libisode       tailor
  3362. +00000044 C _ts_communities      libisode       tailor
  3363. +00000044 C _tsb_addresses       libisode       tailor
  3364. +00000044 C _tsb_communities     libisode       tailor
  3365. +00000100 D _chrcnv              libisode       chrcnv
  3366. +00000100 D _nochrcnv            libisode       nochrcnv
  3367. +00000004 D _compatversion       libisode       compatvrsn
  3368. +00000004 D _isodeversion        libisode       isodevrsn
  3369. +00000004 D _dsapversion         libdsap        dsapvrsn
  3370. +00000044 D __ZptrtabIF          libdsap        IF_tables
  3371. +00000024 D __ZIF_mod            libdsap        IF_tables
  3372. +00000038 D __ZptrtabThorn       libdsap        Thorn_tables
  3373. +00000024 D __ZThorn_mod         libdsap        Thorn_tables
  3374. +00000088 D __ZptrtabAF          libdsap        AF_tables
  3375. +00000024 D __ZAF_mod            libdsap        AF_tables
  3376. +00000124 D __ZptrtabDO          libdsap        DO_tables
  3377. +00000024 D __ZDO_mod            libdsap        DO_tables
  3378. +00000284 D __ZptrtabDAS         libdsap        DAS_tables
  3379. +00000024 D __ZDAS_mod           libdsap        DAS_tables
  3380. +0000017c D __ZptrtabQuipu       libdsap        Quipu_tables
  3381. +00000024 D __ZQuipu_mod         libdsap        Quipu_tables
  3382. +00000074 D __ZptrtabSA          libdsap        SA_tables
  3383. +00000024 D __ZSA_mod            libdsap        SA_tables
  3384. +0000007c D __ZptrtabNRS         libdsap        NRS_tables
  3385. +00000024 D __ZNRS_mod           libdsap        NRS_tables
  3386. +00000004 D _x500asversion       libdsap        x500asvrsn
  3387. +00000014 D _acl_sel             libdsap        acl
  3388. +00000004 C _t61_flag            libdsap        attrv
  3389. +00000004 C _crypt_flag          libdsap        attrv
  3390. +00000004 D _mydsadn             libdsap        ca
  3391. +00000004 C _dsa_dead            libdsap        ds_error
  3392. +00000004 D _NumEntries          libdsap        oid
  3393. +00000004 D _attrNumEntries      libdsap        oid
  3394. +00000004 D _ocNumEntries        libdsap        oid
  3395. +00000008 D _attr_index          libdsap        oid
  3396. +00000004 D _oc_load             libdsap        oid
  3397. +00000004 D _oc_macro_add        libdsap        oid
  3398. +00000004 C _f_table             libdsap        oid
  3399. +000012c0 C _OIDTable            libdsap        oid
  3400. +00001770 C _attrOIDTable        libdsap        oid
  3401. +000020d0 C _ocOIDTable          libdsap        oid
  3402. +00000004 D _NumMacro            libdsap        oid2
  3403. +0000a640 C _macro               libdsap        oid2
  3404. +00000004 D _print_parse_errors  libdsap        parse_error
  3405. +00000004 D _parse_status        libdsap        parse_error
  3406. +00000004 D _opt                 libdsap        parse_error
  3407. +00000004 D _parse_line          libdsap        parse_error
  3408. +00000004 D _acl_fn              libdsap        util
  3409. +00000004 D _parse_file          libdsap        file_print
  3410. +00000004 D _parse_rdn           libdsap        file_print
  3411. +00000004 C _file_attr_length    libdsap        file_enc
  3412. +00000004 D _avs_count           libdsap        attrt_print
  3413. +00000004 C _last_at             libdsap        attrt_print
  3414. +00000004 D _inherit_sntx        libdsap        as_print
  3415. +00000004 D _oc_avsprint         libdsap        avs_print
  3416. +00000004 D _oc_sntx             libdsap        avs_str
  3417. +00000004 D _oc_hier             libdsap        avs_str
  3418. +00000004 D _acl_sntx            libdsap        avs_str
  3419. +00000004 D _merge_acl           libdsap        avs_str
  3420. +00000004 D _ufn_indent          libdsap        dn_print
  3421. +00000004 D _syntax_dn           libdsap        dn_str
  3422. +00000004 D _ch_set              libdsap        string
  3423. +00000004 D _postal_indent       libdsap        post
  3424. +00000004 D _sizelimit           libdsap        conf
  3425. +00000004 D _timelimit           libdsap        conf
  3426. +00000004 D _oidtable            libdsap        conf
  3427. +00000004 D _tailfile            libdsap        conf
  3428. +00000004 D _isotailor           libdsap        conf
  3429. +00000004 D _dsa_address         libdsap        conf
  3430. +00000004 D _myname              libdsap        conf
  3431. +00000004 D _local_dit           libdsap        conf
  3432. +00000004 D _dishinit            libdsap        conf
  3433. +00000004 D _cache_timeout       libdsap        conf
  3434. +00000004 D _log_dsap            libdsap        conf
  3435. +00000004 D _log_stat            libdsap        conf
  3436. +00000004 D _oidformat           libdsap        conf
  3437. +00000004 D _mem_heap            libdsap        conf
  3438. +00000004 D _dsaoidtable         libdsap        conf
  3439. +00000004 D _dsatailfile         libdsap        conf
  3440. +00000004 D _treedir             libdsap        conf
  3441. +00000004 D _no_last_mod         libdsap        conf
  3442. +00000004 D _startup_update      libdsap        conf
  3443. +00000004 D _search_level        libdsap        conf
  3444. +00000004 D _read_only           libdsap        conf
  3445. +00000004 D _admin_size          libdsap        conf
  3446. +00000004 D _admin_time          libdsap        conf
  3447. +00000004 D _conn_timeout        libdsap        conf
  3448. +00000004 D _nsap_timeout        libdsap        conf
  3449. +00000004 D _slave_timeout       libdsap        conf
  3450. +00000004 D _retry_timeout       libdsap        conf
  3451. +00000004 D _watchdog_time       libdsap        conf
  3452. +00000004 D _watchdog_delta      libdsap        conf
  3453. +00000004 D _dsa_mode            libdsap        conf
  3454. +00000004 D _quipu_faststart     libdsap        conf
  3455. +00000004 C _dsap_id             libdsap        conf
  3456. +00000004 C _dsap_ad             libdsap        conf
  3457. +00000004 D _dsap_usage          libdsap        tai_args
  3458. +00000004 D _options             libdsap        tai_args
  3459. +00000004 D _list_top            libdsap        cache
  3460. +00000004 D _current_entry       libdsap        cache
  3461. +00000004 D _current_dn          libdsap        cache
  3462. +00000004 D _unrav_fn            libdsap        cache
  3463. +00000004 D _schema_fn           libdsap        cache
  3464. +00000004 C _at_alias            libdsap        entry
  3465. +00000004 C _at_objectclass      libdsap        entry
  3466. +00000004 D _database_root       libdsap        parse
  3467. +00000004 D _local_master_size   libdsap        parse
  3468. +00000004 D _local_slave_size    libdsap        parse
  3469. +00000004 D _local_cache_size    libdsap        parse
  3470. +00000004 C _savefile            libdsap        parse
  3471. +00000004 D _ufn_notify          libdsap        ufn_parse
  3472. +00000004 D _ufn_flags           libdsap        ufn_parse
  3473. +00000004 D _ufnas               libdsap        ufn_parse
  3474. +00000004 D _ufn_abort           libdsap        ufn_parse
  3475. +00000004 D _ufn_bad_dsa         libdsap        ufn_parse
  3476. +00000004 D _ufn_partials        libdsap        ufn_parse
  3477. +00000004 C _at_OrgUnit          libdsap        ufn_parse
  3478. +00000004 C _at_Organisation     libdsap        ufn_parse
  3479. +00000004 C _at_Locality         libdsap        ufn_parse
  3480. +00000004 C _at_CountryName      libdsap        ufn_parse
  3481. +00000004 C _at_FriendlyCountryName libdsap        ufn_parse
  3482. +00000004 C _at_CommonName       libdsap        ufn_parse
  3483. +00000004 C _at_Surname          libdsap        ufn_parse
  3484. +00000004 C _at_Userid           libdsap        ufn_parse
  3485. +00000004 C _at_ObjectClass      libdsap        ufn_parse
  3486. +00000004 D _chase_flag          libdsap        cstrings
  3487. +00000004 D _result_sequence     libdsap        service
  3488. +00000004 D _current_sequence    libdsap        service
  3489. +00000004 D _top_sequence        libdsap        service
  3490. +00000004 C _copy_flag           libdsap        service
  3491. +00000004 D _dsap_security       libdsap        security
  3492. +00000004 C _turbo_index_types   libdsap        turbo_index
  3493. +00000004 C _turbo_index_num     libdsap        turbo_index
  3494. +00000004 C _subtree_index       libdsap        turbo_index
  3495. +00000004 C _sibling_index       libdsap        turbo_index
  3496. +00000004 C _optimized_only      libdsap        turbo_index
  3497. +00000004 C _at_certificate      libdsap        attribute
  3498. +00000004 C _at_p_password       libdsap        attribute
  3499. +00000004 C _at_password         libdsap        attribute
  3500. +00000004 C _at_acl              libdsap        attribute
  3501. +00000004 C _at_control          libdsap        attribute
  3502. +00000004 C _at_dsa_control      libdsap        attribute
  3503. +00000004 C _at_schema           libdsap        attribute
  3504. +00000004 C _at_applctx          libdsap        attribute
  3505. +00000004 C _at_edbinfo          libdsap        attribute
  3506. +00000004 C _at_masterdsa        libdsap        attribute
  3507. +00000004 C _at_slavedsa         libdsap        attribute
  3508. +00000004 C _at_relaydsa         libdsap        attribute
  3509. +00000004 C _at_dsaaddress       libdsap        attribute
  3510. +00000004 C _at_version          libdsap        attribute
  3511. +00000004 C _at_inherit          libdsap        attribute
  3512. +00000004 C _at_subord           libdsap        attribute
  3513. +00000004 C _at_xref             libdsap        attribute
  3514. +00000004 C _at_nssr             libdsap        attribute
  3515. +00000004 C _at_listen           libdsap        attribute
  3516. +00000004 C _at_searchacl        libdsap        attribute
  3517. +00000004 C _at_listacl          libdsap        attribute
  3518. +00000004 C _at_authpolicy       libdsap        attribute
  3519. +00000004 C _alias_oc            libdsap        attribute
  3520. +00000004 C _quipu_dsa_oid       libdsap        attribute
  3521. +00000004 C _extern_obj_oid      libdsap        attribute
  3522. +00000004 D _qos_indent          libdsap        qos
  3523. +00000004 C _as_sntx             libdsap        attr_sntx
  3524. +00000004 C _bl_tree_top         libdsap        photo_dec
  3525. +00000004 C _wt_tree_top         libdsap        photo_dec
  3526. +00000004 C _two_tree_top        libdsap        photo_dec
  3527. +00000004 C _position            libdsap        photo_dec
  3528. +00000004 C _bitmap              libdsap        photo_dec
  3529. +00000004 D _built               libdsap        photo_build
  3530. +00000004 C _PIC_LINESIZE        libdsap        photo_util
  3531. +00000004 C _STOP                libdsap        photo_util
  3532. +00000004 C _NUMLINES            libdsap        photo_util
  3533. +00000004 D _sacl_sntx           libdsap        searchacl
  3534. +00000004 D _lacl_sntx           libdsap        searchacl
  3535. +00000014 D _selector_rank       libdsap        searchacl
  3536. +00000004 C _authp_sntx          libdsap        authpolicy
  3537. +00000004 D _commonversion       libdsap        commonvrsn
  3538. +00000004 D _x500_da_pcdl        libdsap        dsapcontexts
  3539. +00000004 D _x500_ds_pcdl        libdsap        dsapcontexts
  3540. +00000004 D _quipu_ds_pcdl       libdsap        dsapcontexts
  3541. +00000004 D _internet_ds_pcdl    libdsap        dsapcontexts
  3542. +00000004 C _acse_pci            libdsap        dsapcontexts
  3543. +00000004 C _x500_da_as          libdsap        dsapcontexts
  3544. +00000004 C _x500_ds_as          libdsap        dsapcontexts
  3545. +00000004 C _quipu_ds_as         libdsap        dsapcontexts
  3546. +00000004 C _internet_ds_as      libdsap        dsapcontexts
  3547. +00000004 C _x500_da_ac          libdsap        dsapcontexts
  3548. +00000004 C _x500_ds_ac          libdsap        dsapcontexts
  3549. +00000004 C _quipu_ds_ac         libdsap        dsapcontexts
  3550. +00000004 C _internet_ds_ac      libdsap        dsapcontexts
  3551. +000000a4 C _x500_da_pcdl_s      libdsap        dsapcontexts
  3552. +000000a4 C _x500_ds_pcdl_s      libdsap        dsapcontexts
  3553. +000000a4 C _quipu_ds_pcdl_s     libdsap        dsapcontexts
  3554. +000000a4 C _internet_ds_pcdl_s  libdsap        dsapcontexts
  3555. +00000008 D _restart_fn          libdsap        dsapwait
  3556. +00000330 C _dsa_bound           libdsap        dapbind
  3557. +00000004 D _abort_vector        libdsap        plog
  3558. +00000004 D _netversion          libdsap        netvrsn
  3559. +00000030 D _fclass_pairs        libftam        ftamprovider
  3560. +00000050 D _funit_pairs         libftam        ftamprovider
  3561. +00000020 D _fattr_pairs         libftam        ftamprovider
  3562. +00000098 D _fname_pairs         libftam        ftamprovider
  3563. +00000030 D _fmode_pairs         libftam        ftamprovider
  3564. +00000048 D _frequested_pairs    libftam        ftamprovider
  3565. +00000060 D _fpermitted_pairs    libftam        ftamprovider
  3566. +00000020 D __ftam_log           libftam        ftamtrace
  3567. +00000004 D _ftam_log            libftam        ftamtrace
  3568. +00000028 D _fconctl_pairs       libftam        ftamconctl
  3569. +00000004 D __ZptrtabCONT        libftam        CONT_tables
  3570. +00000024 D __ZCONT_mod          libftam        CONT_tables
  3571. +00000058 D __ZptrtabFADU        libftam        FADU_tables
  3572. +00000024 D __ZFADU_mod          libftam        FADU_tables
  3573. +00000420 D __ZptrtabFTAM        libftam        FTAM_tables
  3574. +00000024 D __ZFTAM_mod          libftam        FTAM_tables
  3575. +00000004 D _ftamversion         libftam        ftamvrsn
  3576. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/others/quipu/image/Makefile isode-8.0/others/quipu/image/Makefile
  3577. --- old/isode-8.0/others/quipu/image/Makefile    Tue Jun 16 13:43:25 1992
  3578. +++ isode-8.0/others/quipu/image/Makefile    Fri Aug 20 14:36:07 1993
  3579. @@ -70,7 +70,7 @@
  3580.  xface:        xface.o imagesbr.o \
  3581.              $(TOPDIR)libisode.a $(TOPDIR)libdsap.a
  3582.          $(LDCC) $(LDFLAGS) -o $@ xface.o imagesbr.o \
  3583. -            $(LIBDSAP) $(LIBISODE) $(LSOCKET) -lX11 $(LIBGDBM)
  3584. +            $(LIBDSAP) $(LIBISODE) $(LSOCKET) -L/usr/X386/lib -lX11 $(LIBGDBM)
  3585.  
  3586.  l-xface:;    $(LINT) $(LFLAGS) xface.c imagesbr.c $(LLIBS) \
  3587.              | grep -v "warning: possible pointer alignment problem"
  3588. @@ -95,7 +95,7 @@
  3589.  xwho:        xwho.o imagesbr.o \
  3590.              $(TOPDIR)libisode.a $(TOPDIR)libdsap.a
  3591.          $(LDCC) $(LDFLAGS) -o $@ xwho.o imagesbr.o \
  3592. -            $(LIBDSAP) $(LIBISODE) $(LSOCKET) -lX11 $(LIBGDBM)
  3593. +            $(LIBDSAP) $(LIBISODE) $(LSOCKET) -L/usr/X386/lib -lX11 $(LIBGDBM)
  3594.  
  3595.  l-xwho:;    $(LINT) $(LFLAGS) xwho.c imagesbr.c $(LLIBS) \
  3596.              | grep -v "warning: possible pointer alignment problem"
  3597. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/others/quipu/photo/Makefile isode-8.0/others/quipu/photo/Makefile
  3598. --- old/isode-8.0/others/quipu/photo/Makefile    Tue Jun 16 13:43:36 1992
  3599. +++ isode-8.0/others/quipu/photo/Makefile    Fri Aug 20 14:04:10 1993
  3600. @@ -27,7 +27,7 @@
  3601.  
  3602.  # Select you display type(s)...
  3603.  # should really go in config/CONFIG.make
  3604. -DISPLAY = ttyphoto fax2ps
  3605. +DISPLAY = ttyphoto fax2ps Xphoto xfax hexphoto jpeg
  3606.  # DISPLAY = sunphoto Xphoto xfax ttyphoto hexphoto t4014 fax2ps jpeg
  3607.  
  3608.  # UNIX path for the xv binary
  3609. @@ -62,11 +62,11 @@
  3610.  
  3611.  Xphoto: $(TOPDIR)libdsap.a d_main.o winx.o
  3612.      $(LDCC) $(LDFLAGS) -o Xphoto \
  3613. -        d_main.o winx.o -lX11 $(LIBDSAP) $(LIBISODE) $(LSOCKET)
  3614. +        d_main.o winx.o -L/usr/X386/lib -lX11 $(LIBDSAP) $(LIBISODE) $(LSOCKET)
  3615.  
  3616.  xfax: $(TOPDIR)libdsap.a d_main.o faxx.o
  3617.      $(LDCC) $(LDFLAGS) -o xfax \
  3618. -        d_main.o faxx.o -lX11 $(LIBDSAP) $(LIBISODE) $(LSOCKET)
  3619. +        d_main.o faxx.o -L/usr/X386/lib -lX11 $(LIBDSAP) $(LIBISODE) $(LSOCKET)
  3620.  
  3621.  fax2ps: $(TOPDIR)libdsap.a d_main.o ps.o
  3622.      $(LDCC) $(LDFLAGS) -o fax2ps \
  3623. @@ -98,7 +98,8 @@
  3624.  PBMSRC  =    /usr/src/pbmplus/
  3625.  PBMDIR    =    $(PBMSRC)pbm/
  3626.  PBMINC    =    -I$(PBMSRC) -I$(PBMDIR)
  3627. -LIBPBM    =    $(PBMDIR)libpbm.a
  3628. +#LIBPBM    =    $(PBMDIR)libpbm.a
  3629. +LIBPBM    =    /usr/local/lib/libpbm.a
  3630.  
  3631.  pbm:        faxtopbm pbmtofax
  3632.  
  3633. @@ -107,14 +108,14 @@
  3634.              $(LIBDSAP) $(LIBPBM) $(LIBISODE) $(LSOCKET)
  3635.  
  3636.  faxtopbm.o:    faxtopbm.c
  3637. -        $(CC) $(CFLAGS) $(PBMINC) -c faxtopbm.c
  3638. +        $(CC) $(XFLAGS) $(CFLAGS) $(PBMINC) -c faxtopbm.c
  3639.  
  3640.  pbmtofax:    pbmtofax.o encode.o code_word.o $(TOPDIR)libdsap.a $(LIBPBM)
  3641.          $(LDCC) $(LDFLAGS) -o $@ pbmtofax.o encode.o code_word.o \
  3642.              $(LIBDSAP) $(LIBPBM) $(LIBISODE) $(LSOCKET)
  3643.  
  3644.  pbmtofax.o:    pbmtofax.c
  3645. -        $(CC) $(CFLAGS) $(PBMINC) -c pbmtofax.c
  3646. +        $(CC) $(XFLAGS) $(CFLAGS) $(PBMINC) -c pbmtofax.c
  3647.  
  3648.  
  3649.  #####################################################################
  3650. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/others/quipu/photo/pbmtofax.c isode-8.0/others/quipu/photo/pbmtofax.c
  3651. --- old/isode-8.0/others/quipu/photo/pbmtofax.c    Tue Jun 16 13:43:41 1992
  3652. +++ isode-8.0/others/quipu/photo/pbmtofax.c    Fri Aug 20 14:00:47 1993
  3653. @@ -28,7 +28,7 @@
  3654.  #include <stdio.h>
  3655.  #include "quipu/photo.h"
  3656.  #include "pbm.h"
  3657. -#include "general.h"
  3658. +/*#include "general.h"*/
  3659.  
  3660.  /*     DATA */
  3661.  
  3662. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/others/quipu/tools/dsaconfig/dsaconfig.c isode-8.0/others/quipu/tools/dsaconfig/dsaconfig.c
  3663. --- old/isode-8.0/others/quipu/tools/dsaconfig/dsaconfig.c    Tue Jun 16 13:43:58 1992
  3664. +++ isode-8.0/others/quipu/tools/dsaconfig/dsaconfig.c    Fri Aug 20 15:07:26 1993
  3665. @@ -1334,6 +1334,7 @@
  3666.  
  3667.  /*     MISCELLANY */
  3668.  
  3669. +#ifndef _POSIX_SOURCE
  3670.  #ifndef    lint
  3671.  static char *strdup (s)
  3672.  char   *s;
  3673. @@ -1347,4 +1348,5 @@
  3674.  
  3675.      return p;
  3676.  }
  3677. +#endif
  3678.  #endif
  3679. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/others/quipu/tools/dsaconfig/usconfig.c isode-8.0/others/quipu/tools/dsaconfig/usconfig.c
  3680. --- old/isode-8.0/others/quipu/tools/dsaconfig/usconfig.c    Tue Jun 16 13:44:00 1992
  3681. +++ isode-8.0/others/quipu/tools/dsaconfig/usconfig.c    Fri Aug 20 15:08:36 1993
  3682. @@ -32,6 +32,9 @@
  3683.  #include <sys/file.h>
  3684.  #include <pwd.h>
  3685.  #include <grp.h>
  3686. +#ifdef _POSIX_SOURCE
  3687. +#include <unistd.h>
  3688. +#endif
  3689.  
  3690.  #include "general.h"
  3691.  #include "manifest.h"
  3692. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/others/quipu/uips/de/config.h isode-8.0/others/quipu/uips/de/config.h
  3693. --- old/isode-8.0/others/quipu/uips/de/config.h    Tue Jun 16 13:46:07 1992
  3694. +++ isode-8.0/others/quipu/uips/de/config.h    Tue Aug 31 15:14:25 1993
  3695. @@ -24,6 +24,6 @@
  3696.  #ifndef _deconfig_h
  3697.  #define _deconfig_h
  3698.  
  3699. -#define PAGER "/usr/5bin/pg -e -n -p \"RETURN for next screen; q to quit\""
  3700. +#define PAGER "/usr/bin/less"
  3701.  
  3702.  #endif _deconfig_h
  3703. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/others/quipu/uips/de/rawinput.c isode-8.0/others/quipu/uips/de/rawinput.c
  3704. --- old/isode-8.0/others/quipu/uips/de/rawinput.c    Tue Jun 16 13:46:33 1992
  3705. +++ isode-8.0/others/quipu/uips/de/rawinput.c    Tue Aug 31 15:19:01 1993
  3706. @@ -26,7 +26,11 @@
  3707.  
  3708.  
  3709.  #include <stdio.h>
  3710. +#ifdef __linux__
  3711. +#include <termios.h>
  3712. +#else
  3713.  #include <sys/termio.h>
  3714. +#endif
  3715.  
  3716.  static short savemode;
  3717.  static unsigned char savemin;
  3718. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/others/quipu/uips/dish/socket.c isode-8.0/others/quipu/uips/dish/socket.c
  3719. --- old/isode-8.0/others/quipu/uips/dish/socket.c    Tue Jun 16 13:44:26 1992
  3720. +++ isode-8.0/others/quipu/uips/dish/socket.c    Tue Aug 31 17:00:54 1993
  3721. @@ -69,12 +69,20 @@
  3722.          else
  3723.              (void) sprintf (buffer, "127.0.0.1 %d", portno);
  3724.  
  3725. +#ifdef _POSIX_SOURCE
  3726. +        (void) setenv ("DISHPROC", ptr = buffer, 1);
  3727. +#else
  3728.          (void) setenv ("DISHPROC", ptr = buffer);
  3729. +#endif
  3730.          }
  3731.  
  3732.          if (pid !=0 || (prnt = getenv ("DISHPARENT")) == NULLCP) {
  3733.          (void) sprintf (parent, "%d", myppid);
  3734. +#ifdef _POSIX_SOURCE
  3735. +        (void) setenv ("DISHPARENT", prnt = parent, 1);
  3736. +#else
  3737.          (void) setenv ("DISHPARENT", prnt = parent);
  3738. +#endif
  3739.      }
  3740.  
  3741.  
  3742. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/others/quipu/uips/fred/Makefile isode-8.0/others/quipu/uips/fred/Makefile
  3743. --- old/isode-8.0/others/quipu/uips/fred/Makefile    Tue Jun 16 13:44:31 1992
  3744. +++ isode-8.0/others/quipu/uips/fred/Makefile    Wed Sep  1 10:26:42 1993
  3745. @@ -82,6 +82,7 @@
  3746.          -@echo ""
  3747.  
  3748.  fred:        xfred
  3749. +        :
  3750.  
  3751.  xfred:        fred.o dispatch.o miscellany.o pipe.o socket.o whois.o
  3752.          $(LDCC) $(LDFLAGS) -o $@ fred.o dispatch.o miscellany.o \
  3753. @@ -156,6 +157,7 @@
  3754.          -@echo ""
  3755.  
  3756.  fredsh:        xfredsh
  3757. +        :
  3758.  
  3759.  xfredsh:    fredsh.sh
  3760.          cp fredsh.sh $@
  3761. @@ -193,6 +195,7 @@
  3762.          -@echo ""
  3763.  
  3764.  dad:        xdad
  3765. +        :
  3766.  
  3767.  xdad:        dad.o socket.o
  3768.          $(LDCC) $(LDFLAGS) -o $@ dad.o socket.o $(LIBES) $(LSOCKET)
  3769. @@ -215,6 +218,7 @@
  3770.          -@echo ""
  3771.  
  3772.  whitepages:    xwhitepages
  3773. +        :
  3774.  
  3775.  xwhitepages:    whitepages.sh
  3776.          cp whitepages.sh $@
  3777. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/others/quipu/uips/manage/Makefile isode-8.0/others/quipu/uips/manage/Makefile
  3778. --- old/isode-8.0/others/quipu/uips/manage/Makefile    Tue Jun 16 13:44:45 1992
  3779. +++ isode-8.0/others/quipu/uips/manage/Makefile    Tue Aug 31 17:08:55 1993
  3780. @@ -64,6 +64,7 @@
  3781.          -@echo ""
  3782.  
  3783.  dish:        xdish
  3784. +        :
  3785.  
  3786.  xdish:        dish.o libmanage.a
  3787.          $(LDCC) $(LDFLAGS) -o $@ dish.o $(LIBES) 
  3788. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/others/quipu/uips/pod/Makefile isode-8.0/others/quipu/uips/pod/Makefile
  3789. --- old/isode-8.0/others/quipu/uips/pod/Makefile    Tue Jun 16 13:44:54 1992
  3790. +++ isode-8.0/others/quipu/uips/pod/Makefile    Fri Aug 27 16:38:28 1993
  3791. @@ -10,7 +10,7 @@
  3792.  ###############################################################################
  3793.  
  3794.  #X app-defaults directory.
  3795. -APPDEFDIR =    /usr/lib/X11/app-defaults
  3796. +APPDEFDIR =    /usr/X386/lib/X11/app-defaults
  3797.  
  3798.  #yacc flags
  3799.  YFLAGS  =    -d
  3800. @@ -24,7 +24,7 @@
  3801.  
  3802.  ISOLIBS =    $(TOPDIR)libdsap.a $(TOPDIR)libisode.a 
  3803.  
  3804. -XLIBS   =    -lXaw -lXmu -lXt -lX11 -lXext
  3805. +XLIBS   =    -L/usr/X386/lib -lXaw -lXmu -lXt -lX11 -lXext
  3806.  
  3807.  LIBES   =       $(ISOLIBS) $(XLIBS)
  3808.  LLIBS   =       $(TOPDIR)llib-ldsap $(TOPDIR)llib-lisode
  3809. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/others/quipu/uips/pod/Pod.ad isode-8.0/others/quipu/uips/pod/Pod.ad
  3810. --- old/isode-8.0/others/quipu/uips/pod/Pod.ad    Tue Jun 16 13:44:55 1992
  3811. +++ isode-8.0/others/quipu/uips/pod/Pod.ad    Wed Sep  1 11:54:46 1993
  3812. @@ -1,19 +1,19 @@
  3813.  /* $Header: /xtel/isode/isode/others/quipu/uips/pod/RCS/Pod.ad,v 9.0 1992/06/16 12:44:54 isode Rel $ */
  3814.  
  3815. -Pod*PosTitle.font:        -*-helvetica-*-*-*-*-11-*
  3816. -Pod*readTitle.font:        -*-helvetica-*-*-*-*-11-*
  3817. -Pod*listTitle.font:        -*-helvetica-*-*-*-*-11-*
  3818. -Pod*HistoryTitle.font:        -*-helvetica-*-*-*-*-11-*
  3819. -Pod*MenuButton*font:        -*-helvetica-*-r-*-*-11-*
  3820. +Pod*PosTitle.font:        -*-helvetica-*-*-*-*-10-*
  3821. +Pod*readTitle.font:        -*-helvetica-*-*-*-*-10-*
  3822. +Pod*listTitle.font:        -*-helvetica-*-*-*-*-10-*
  3823. +Pod*HistoryTitle.font:        -*-helvetica-*-*-*-*-10-*
  3824. +Pod*MenuButton*font:        -*-helvetica-*-r-*-*-10-*
  3825.  Pod*standby*font:        -*-helvetica-bold-r-*-*-14-*
  3826.  Pod*error_popup*font:        -*-helvetica-bold-r-*-*-14-*
  3827. -Pod*popup_help_form*font:    -*-helvetica-medium-r-*-*-11-*
  3828. +Pod*popup_help_form*font:    -*-helvetica-medium-r-*-*-10-*
  3829.  Pod*About Pod*font:        -*-helvetica-bold-r-*-*-14-*
  3830.  Pod*SearchVal*font:        -adobe-helvetica-medium-r-*-*-12-*
  3831.  Pod*SearchValLabel.font:    -adobe-helvetica-medium-r-*-*-12-*
  3832.  Pod*TypeButton.font:        -adobe-helvetica-bold-r-*-*-12-*
  3833.  Pod*menu*font:            -adobe-helvetica-bold-r-*-*-12-*
  3834. -Pod*font:            -*-helvetica-medium-r-*-*-11-*
  3835. +Pod*font:            -*-helvetica-medium-r-*-*-10-*
  3836.  
  3837.  #ifdef COLOR
  3838.  
  3839. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/pepsy/Makefile isode-8.0/pepsy/Makefile
  3840. --- old/isode-8.0/pepsy/Makefile    Tue Jun 16 13:24:04 1992
  3841. +++ isode-8.0/pepsy/Makefile    Wed Aug 25 14:28:32 1993
  3842. @@ -81,6 +81,7 @@
  3843.          -@echo ""
  3844.  
  3845.  pepsy:        xpepsy
  3846. +        :
  3847.  
  3848.  xpepsy:        pepsyvrsn.o $(PEPSYLIBES)
  3849.          $(LDCC) $(LDFLAGS) -o $@ $(PEPSY-O) \
  3850. @@ -142,6 +143,18 @@
  3851.  ################################################################
  3852.  
  3853.  inst-libpepsy:    $(LIBDIR)libpepsy.a inst-headers
  3854. +
  3855. +zap-pepsy:
  3856. +        -rm -f $(LIBFILES) libpepsy.a
  3857. +
  3858. +linux-lib:    zap-pepsy ../jump/libpepsy.a
  3859. +
  3860. +../jump/libpepsy.a:    libpepsy
  3861. +        -rm -f $@
  3862. +        cp libpepsy.a $@
  3863. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  3864. +        -@ls -gls $@
  3865. +        -@echo ""
  3866.  
  3867.  libpepsy:    libpepsy.a true
  3868.          -@rm -f $(TOPDIR)h/UNIV*.h
  3869. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/pepy/Makefile isode-8.0/pepy/Makefile
  3870. --- old/isode-8.0/pepy/Makefile    Tue Jun 16 13:25:02 1992
  3871. +++ isode-8.0/pepy/Makefile    Tue Aug 24 11:52:30 1993
  3872. @@ -81,6 +81,7 @@
  3873.          -@echo ""
  3874.  
  3875.  pepy:        xpepy
  3876. +        :
  3877.  
  3878.  xpepy:        pepyvrsn.o $(PEPYLIBES)
  3879.          $(LDCC) $(LDFLAGS) -o $@ pepy.o pepy_do.o pepy_undo.o \
  3880. @@ -142,6 +143,7 @@
  3881.          -@echo ""
  3882.  
  3883.  posy:        xposy
  3884. +        :
  3885.  
  3886.  xposy:        posy.o pepy_misc.o yacc.o pepyvrsn.o $(PEPYLIBES)
  3887.          $(LDCC) $(LDFLAGS) -o $@ posy.o pepy_misc.o yacc.o \
  3888. @@ -165,6 +167,18 @@
  3889.  HEADERS    =    UNIV.ph UNIV-types.h
  3890.  
  3891.  inst-libpepy:    $(LIBDIR)libpepy.a inst-headers
  3892. +
  3893. +zap-pepy:
  3894. +        -rm -f $(OFILES) libpepy.a UPEPY-[0-9]*.o VPEPY-[0-9]*.o
  3895. +
  3896. +linux-lib:    zap-pepy ../jump/libpepy.a
  3897. +
  3898. +../jump/libpepy.a:    libpepy.a
  3899. +        -rm -f $@
  3900. +        cp libpepy.a $@
  3901. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  3902. +        -@ls -gls $@
  3903. +        -@echo ""
  3904.  
  3905.  $(LIBDIR)libpepy.a:    libpepy.a
  3906.          -rm -f $@
  3907. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/pepy/dotests isode-8.0/pepy/dotests
  3908. --- old/isode-8.0/pepy/dotests    Thu Jan  1 01:00:00 1970
  3909. +++ isode-8.0/pepy/dotests    Thu Aug 26 17:09:25 1993
  3910. @@ -0,0 +1,9 @@
  3911. +for f in test/test*.pe; \
  3912. +        do (echo pepytest $f; ./pepytest < $f); done
  3913. +for f in test/test*.pe test/mhs/msg*.pe; \
  3914. +        do (echo pp $f; ./pp < $f); done
  3915. +for f in test/mhs/msg*.pe; \
  3916. +        do (echo mpp $f; ./mpp < $f); done
  3917. +./salary fritz 10
  3918. +./hello_world
  3919. +./bigpepytest
  3920. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/psap/Makefile isode-8.0/psap/Makefile
  3921. --- old/isode-8.0/psap/Makefile    Tue Jun 16 13:25:44 1992
  3922. +++ isode-8.0/psap/Makefile    Tue Aug 24 11:53:07 1993
  3923. @@ -85,6 +85,18 @@
  3924.  
  3925.  inst-libpsap:    $(LIBDIR)libpsap.a $(LINTDIR)llib-lpsap
  3926.  
  3927. +zap-psap:
  3928. +        -rm -f $(OFILES) libpsap.a psapvrsn.o
  3929. +
  3930. +linux-lib:    zap-psap ../jump/libpsap.a
  3931. +
  3932. +../jump/libpsap.a:    libpsap.a
  3933. +        -rm -f $@
  3934. +        cp libpsap.a $@
  3935. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  3936. +        -@ls -gls $@
  3937. +        -@echo ""
  3938. +
  3939.  $(LIBDIR)libpsap.a:    libpsap.a
  3940.          -rm -f $@
  3941.          cp libpsap.a $@
  3942. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/psap2/Makefile isode-8.0/psap2/Makefile
  3943. --- old/isode-8.0/psap2/Makefile    Tue Jun 16 13:29:43 1992
  3944. +++ isode-8.0/psap2/Makefile    Tue Aug 24 11:52:20 1993
  3945. @@ -68,6 +68,18 @@
  3946.  
  3947.  inst-libpsap2:    $(LIBDIR)libpsap2.a $(LINTDIR)llib-lpsap2
  3948.  
  3949. +zap-psap2:
  3950. +        -rm -f $(OFILES) libpsap2.a PS_tables.o psap2vrsn.o
  3951. +
  3952. +linux-lib:    zap-psap2 ../jump/libpsap2.a
  3953. +
  3954. +../jump/libpsap2.a:    libpsap2.a
  3955. +        -rm -f $@
  3956. +        cp libpsap2.a $@
  3957. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  3958. +        -@ls -gls $@
  3959. +        -@echo ""
  3960. +
  3961.  $(LIBDIR)libpsap2.a:    libpsap2.a
  3962.          -rm -f $@
  3963.          cp libpsap2.a $@
  3964. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/psap2-lpp/Makefile isode-8.0/psap2-lpp/Makefile
  3965. --- old/isode-8.0/psap2-lpp/Makefile    Tue Jun 16 13:31:58 1992
  3966. +++ isode-8.0/psap2-lpp/Makefile    Fri Aug 27 11:04:05 1993
  3967. @@ -66,6 +66,18 @@
  3968.  
  3969.  inst-libpsap2:    $(LIBDIR)libpsap2-lpp.a $(LINTDIR)llib-lpsap2-lpp
  3970.  
  3971. +zap-psap2-lpp:
  3972. +        -rm -f $(OFILES) libpsap2.a PS_tables.o psap2vrsn.o
  3973. +
  3974. +linux-lib:    zap-psap2-lpp ../jump/libpsap2-lpp.a
  3975. +
  3976. +../jump/libpsap2-lpp.a:    libpsap2-lpp.a
  3977. +        -rm -f $@
  3978. +        cp libpsap2-lpp.a $@
  3979. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  3980. +        -@ls -gls $@
  3981. +        -@echo ""
  3982. +
  3983.  $(LIBDIR)libpsap2-lpp.a:    libpsap2-lpp.a
  3984.          -rm -f $@
  3985.          cp libpsap2-lpp.a $@
  3986. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/quipu/Makefile isode-8.0/quipu/Makefile
  3987. --- old/isode-8.0/quipu/Makefile    Tue Jun 16 13:34:01 1992
  3988. +++ isode-8.0/quipu/Makefile    Mon Aug 23 11:24:13 1993
  3989. @@ -37,8 +37,8 @@
  3990.  
  3991.  # Remove these two definitions if you do not want the QUIPU optimised malloc.
  3992.  # Performace may suffer if you do!
  3993. -MALLOC_C =    malloc.c
  3994. -MALLOC_O =    malloc.o
  3995. +#MALLOC_C =    malloc.c
  3996. +#MALLOC_O =    malloc.o
  3997.  #DEBUGLIB  =    /xtel/user/cjr/src/mprof/libc_mp.a
  3998.  
  3999.  ##############################################################
  4000. @@ -133,7 +133,7 @@
  4001.          $(LDCC) $(LDFLAGS) -o $@ malloc_test.o qmalloc.o
  4002.  
  4003.  qmalloc.o:    malloc.c
  4004. -        $(CC) $(CFLAGS) -DMALLOC_TEST -o $@ -c malloc.c 
  4005. +        $(CC) $(CFLAGS) -o $@ -c malloc.c 
  4006.  
  4007.  quipuvrsn.c:    $(OFILES)
  4008.          @$(UTILDIR)version.sh quipu > $@
  4009. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/quipu/dish/Makefile isode-8.0/quipu/dish/Makefile
  4010. --- old/isode-8.0/quipu/dish/Makefile    Tue Jun 16 13:35:40 1992
  4011. +++ isode-8.0/quipu/dish/Makefile    Mon Aug 23 15:52:33 1993
  4012. @@ -78,6 +78,7 @@
  4013.          -@echo ""
  4014.  
  4015.  dish:        xdish
  4016. +        :
  4017.  
  4018.  xdish:        libdish.a dish.o $(LIBES)
  4019.          $(LDCC) $(LDFLAGS) -o $@ dish.o $(LIBDISH) \
  4020. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/quipu/dish/dishlib.c isode-8.0/quipu/dish/dishlib.c
  4021. --- old/isode-8.0/quipu/dish/dishlib.c    Tue Jun 16 13:35:46 1992
  4022. +++ isode-8.0/quipu/dish/dishlib.c    Fri Aug 20 11:20:34 1993
  4023. @@ -160,9 +160,13 @@
  4024.      (void) signal (SIGHUP,    dish_quit);
  4025.      (void) signal (SIGQUIT,    dish_quit);
  4026.      (void) signal (SIGILL,     dish_quit);
  4027. +#ifdef SIGBUS
  4028.      (void) signal (SIGBUS,    dish_quit);
  4029. +#endif
  4030.      (void) signal (SIGSEGV,    dish_quit);
  4031. +#ifdef SIGSYS
  4032.      (void) signal (SIGSYS,    dish_quit);
  4033. +#endif
  4034.      (void) signal (SIGTERM,    dish_quit);
  4035.  
  4036.  #ifdef TURBO_DISK
  4037. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/quipu/dish/fred.c isode-8.0/quipu/dish/fred.c
  4038. --- old/isode-8.0/quipu/dish/fred.c    Tue Jun 16 13:35:49 1992
  4039. +++ isode-8.0/quipu/dish/fred.c    Fri Aug 20 11:18:39 1993
  4040. @@ -137,7 +137,11 @@
  4041.      if (argc != 3)
  4042.          goto usage;
  4043.  
  4044. +#ifdef _POSIX_SOURCE
  4045. +    (void) setenv ("DISPLAY", argv[2], 1);
  4046. +#else
  4047.      (void) setenv ("DISPLAY", argv[2]);
  4048. +#endif
  4049.      if (s_photo)
  4050.          set_av_pe_print (s_photo,
  4051.                   strdup (isodefile ("g3fax/Xphoto", 1)));
  4052. @@ -1599,10 +1603,18 @@
  4053.              }
  4054.              ps_print (ps, " ");
  4055.              *--ps -> ps_ptr = NULL, ps -> ps_cnt++;
  4056. +#ifdef _POSIX_SOURCE
  4057. +            (void) setenv ("RDN", ps -> ps_base, 1);
  4058. +#else
  4059.              (void) setenv ("RDN", ps -> ps_base);
  4060. +#endif
  4061.              }
  4062.              else
  4063. +#ifdef _POSIX_SOURCE
  4064. +            (void) setenv ("RDN", "Photo", 1);
  4065. +#else
  4066.              (void) setenv ("RDN", "Photo");
  4067. +#endif
  4068.          }
  4069.          break;
  4070.          }
  4071. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/quipu/dish/pipe.c isode-8.0/quipu/dish/pipe.c
  4072. --- old/isode-8.0/quipu/dish/pipe.c    Tue Jun 16 13:35:55 1992
  4073. +++ isode-8.0/quipu/dish/pipe.c    Fri Aug 20 11:21:19 1993
  4074. @@ -64,7 +64,11 @@
  4075.  
  4076.      if ((cp = getenv ("DISHPARENT")) == NULLCP) {
  4077.          (void) sprintf (parent, "%d", getppid ());
  4078. +#ifdef _POSIX_SOURCE
  4079. +        (void) setenv ("DISHPARENT", cp = parent, 1);
  4080. +#else
  4081.          (void) setenv ("DISHPARENT", cp = parent);
  4082. +#endif
  4083.      }
  4084.  
  4085.  
  4086. @@ -360,7 +364,11 @@
  4087.  #else
  4088.          (void) sprintf (buffer, "127.0.0.1 %d", portno);
  4089.  #endif
  4090. +#ifdef _POSIX_SOURCE
  4091. +        (void) setenv ("DISHPROC", ptr = buffer, 1);
  4092. +#else
  4093.          (void) setenv ("DISHPROC", ptr = buffer);
  4094. +#endif
  4095.      }
  4096.  
  4097.      if ((dp = index (ptr, ' ')) == NULLCP || sscanf (dp + 1, "%d", &portno) != 1) {
  4098. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/quipu/dsa.c isode-8.0/quipu/dsa.c
  4099. --- old/isode-8.0/quipu/dsa.c    Tue Jun 16 13:34:19 1992
  4100. +++ isode-8.0/quipu/dsa.c    Fri Aug 20 11:08:31 1993
  4101. @@ -281,9 +281,13 @@
  4102.      /* now started don't stop on core dumps !!! */
  4103.      (void) signal (SIGQUIT, attempt_restart);
  4104.      (void) signal (SIGILL,  attempt_restart);
  4105. +#ifdef SIGBUS
  4106.      (void) signal (SIGBUS,  attempt_restart);
  4107. +#endif
  4108.      (void) signal (SIGSEGV, attempt_restart);
  4109. +#ifdef SIGSYS
  4110.      (void) signal (SIGSYS,  attempt_restart);
  4111. +#endif
  4112.      (void) signal (SIGPIPE,  attempt_restart);
  4113.  #ifdef    SIGUSR1
  4114.      (void) signal (SIGUSR1, list_status);
  4115. @@ -743,9 +747,13 @@
  4116.  
  4117.      (void) signal (SIGQUIT, attempt_restart);
  4118.      (void) signal (SIGILL,  attempt_restart);
  4119. +#ifdef SIGBUS
  4120.      (void) signal (SIGBUS,  attempt_restart);
  4121. +#endif
  4122.      (void) signal (SIGSEGV, attempt_restart);
  4123. +#ifdef SIGSYS
  4124.      (void) signal (SIGSYS,  attempt_restart);
  4125. +#endif
  4126.  
  4127.      if (sig >= 0 && debug)
  4128.          (void) fprintf (stderr,"DSA %s has a problem\n",mydsaname);
  4129. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/quipu/malloc.c isode-8.0/quipu/malloc.c
  4130. --- old/isode-8.0/quipu/malloc.c    Tue Jun 16 13:34:31 1992
  4131. +++ isode-8.0/quipu/malloc.c    Fri Aug 20 11:11:21 1993
  4132. @@ -1,3 +1,5 @@
  4133. +#ifndef __linux__
  4134. +
  4135.  /* malloc.c - Quipu DSA specific memory management */
  4136.  
  4137.  #ifndef    lint
  4138. @@ -804,3 +806,5 @@
  4139.  }
  4140.  
  4141.  #endif    /* QUIPUMALLOC */
  4142. +
  4143. +#endif /* __linux__ */
  4144. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/ronot/Makefile isode-8.0/ronot/Makefile
  4145. --- old/isode-8.0/ronot/Makefile    Tue Jun 16 13:36:37 1992
  4146. +++ isode-8.0/ronot/Makefile    Tue Aug 24 11:51:28 1993
  4147. @@ -59,6 +59,18 @@
  4148.  
  4149.  inst-libronot:    $(LIBDIR)libronot.a $(LINTDIR)llib-lronot
  4150.  
  4151. +zap-ronot:
  4152. +        -rm -f $(OFILES) libronot.a ronotvrsn.o
  4153. +
  4154. +linux-lib:    zap-ronot ../jump/libronot.a
  4155. +
  4156. +../jump/libronot.a:    libronot.a
  4157. +        -rm -f $@
  4158. +        cp libronot.a $@
  4159. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  4160. +        -@ls -gls $@
  4161. +        -@echo ""
  4162. +
  4163.  $(LIBDIR)libronot.a:    libronot.a
  4164.          -rm -f $@
  4165.          cp libronot.a $@
  4166. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/rosap/Makefile isode-8.0/rosap/Makefile
  4167. --- old/isode-8.0/rosap/Makefile    Tue Jun 16 13:37:02 1992
  4168. +++ isode-8.0/rosap/Makefile    Wed Aug 25 14:14:43 1993
  4169. @@ -78,6 +78,18 @@
  4170.  
  4171.  inst-librosap:    $(LIBDIR)librosap.a $(LINTDIR)llib-lrosap
  4172.  
  4173. +zap-rosap:
  4174. +        -rm -f $(OFILES) librosap.a ROS_tables.o rosapvrsn.o
  4175. +
  4176. +linux-lib:    zap-rosap ../jump/librosap.a
  4177. +
  4178. +../jump/librosap.a:    librosap.a
  4179. +        -rm -f $@
  4180. +        cp librosap.a $@
  4181. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  4182. +        -@ls -gls $@
  4183. +        -@echo ""
  4184. +
  4185.  $(LIBDIR)librosap.a:    librosap.a
  4186.          -rm -f $@
  4187.          cp librosap.a $@
  4188. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/rosy/Makefile isode-8.0/rosy/Makefile
  4189. --- old/isode-8.0/rosy/Makefile    Tue Jun 16 13:37:29 1992
  4190. +++ isode-8.0/rosy/Makefile    Tue Aug 24 11:51:15 1993
  4191. @@ -69,6 +69,7 @@
  4192.          -@echo ""
  4193.  
  4194.  rosy:        xrosy
  4195. +        :
  4196.  
  4197.  xrosy:        rosyvrsn.o $(PEPYLIBES)
  4198.          $(LDCC) $(LDFLAGS) -o $@ rosy.o yacc.o pepy_misc.o \
  4199. @@ -133,6 +134,18 @@
  4200.  OFILES=        $(P-OFILES) $(N-OFILES) $(OSTRINGS)
  4201.  
  4202.  inst-librosy:    $(LIBDIR)librosy.a $(LINTDIR)llib-lrosy
  4203. +
  4204. +zap-rosy:
  4205. +        -rm -f $(OFILES) librosy.a
  4206. +
  4207. +linux-lib:    zap-rosy ../jump/librosy.a
  4208. +
  4209. +../jump/librosy.a:    librosy.a
  4210. +        -rm -f $@
  4211. +        cp librosy.a $@
  4212. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  4213. +        -@ls -gls $@
  4214. +        -@echo ""
  4215.  
  4216.  $(LIBDIR)librosy.a:    librosy.a
  4217.          -rm -f $@
  4218. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/rtsap/Makefile isode-8.0/rtsap/Makefile
  4219. --- old/isode-8.0/rtsap/Makefile    Tue Jun 16 13:37:45 1992
  4220. +++ isode-8.0/rtsap/Makefile    Tue Aug 24 11:51:56 1993
  4221. @@ -73,6 +73,18 @@
  4222.  
  4223.  inst-librtsap:    $(LIBDIR)librtsap.a $(LINTDIR)llib-lrtsap
  4224.  
  4225. +zap-rtsap:
  4226. +        -rm -f $(OFILES) librtsap.a RTS_tables.o rtsapvrsn.o
  4227. +
  4228. +linux-lib:    zap-rtsap ../jump/librtsap.a
  4229. +
  4230. +../jump/librtsap.a:    librtsap.a
  4231. +        -rm -f $@
  4232. +        cp librtsap.a $@
  4233. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  4234. +        -@ls -gls $@
  4235. +        -@echo ""
  4236. +
  4237.  $(LIBDIR)librtsap.a:    librtsap.a
  4238.          -rm -f $@
  4239.          cp librtsap.a $@
  4240. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/snmp/objects.defs isode-8.0/snmp/objects.defs
  4241. --- old/isode-8.0/snmp/objects.defs    Tue Jun 16 12:33:20 1992
  4242. +++ isode-8.0/snmp/objects.defs    Mon Aug 23 16:07:25 1993
  4243. @@ -462,6 +462,530 @@
  4244.  ospfVirtNbrLSRetransQLen ospfVirtNbrEntry.7 Gauge           read-only       mandatory
  4245.  
  4246.  
  4247. +-- automatically generated by mosy 7.0 #65 (dbc), do not edit!
  4248. +
  4249. +-- object definitions compiled from RFC1269-MIB
  4250. +
  4251. +bgp                  mib-2.15
  4252. +
  4253. +bgpVersion           bgp.1            OctetString     read-only       mandatory
  4254. +bgpLocalAs           bgp.2            INTEGER         read-only       mandatory
  4255. +bgpPeerTable         bgp.3            Aggregate       not-accessible  mandatory
  4256. +bgpIdentifier        bgp.4            IpAddress       read-only       mandatory
  4257. +bgpPeerEntry         bgpPeerTable.1   Aggregate       not-accessible  mandatory
  4258. +bgpPeerIdentifier    bgpPeerEntry.1   IpAddress       read-only       mandatory
  4259. +bgpPeerState         bgpPeerEntry.2   INTEGER         read-only       mandatory
  4260. +bgpPeerAdminStatus   bgpPeerEntry.3   INTEGER         read-write      mandatory
  4261. +bgpPeerNegotiatedVersion bgpPeerEntry.4   INTEGER         read-only       mandatory
  4262. +bgpPeerLocalAddr     bgpPeerEntry.5   IpAddress       read-only       mandatory
  4263. +bgpPeerLocalPort     bgpPeerEntry.6   INTEGER         read-only       mandatory
  4264. +bgpPeerRemoteAddr    bgpPeerEntry.7   IpAddress       read-only       mandatory
  4265. +bgpPeerRemotePort    bgpPeerEntry.8   INTEGER         read-only       mandatory
  4266. +bgpPeerRemoteAs      bgpPeerEntry.9   INTEGER         read-only       mandatory
  4267. +bgpPeerInUpdates     bgpPeerEntry.10  Counter         read-only       mandatory
  4268. +bgpPeerOutUpdates    bgpPeerEntry.11  Counter         read-only       mandatory
  4269. +bgpPeerInTotalMessages bgpPeerEntry.12  Counter         read-only       mandatory
  4270. +bgpPeerOutTotalMessages bgpPeerEntry.13  Counter         read-only       mandatory
  4271. +bgpPeerLastError     bgpPeerEntry.14  OctetString     read-only       mandatory
  4272. +bgpRcvdPathAttrTable bgp.5            Aggregate       not-accessible  mandatory
  4273. +bgpPathAttrEntry     bgpRcvdPathAttrTable.1 Aggregate       not-accessible  mandatory
  4274. +bgpPathAttrPeer      bgpPathAttrEntry.1 IpAddress       read-only       mandatory
  4275. +bgpPathAttrDestNetwork bgpPathAttrEntry.2 IpAddress       read-only       mandatory
  4276. +bgpPathAttrOrigin    bgpPathAttrEntry.3 INTEGER         read-only       mandatory
  4277. +bgpPathAttrASPath    bgpPathAttrEntry.4 OctetString     read-only       mandatory
  4278. +bgpPathAttrNextHop   bgpPathAttrEntry.5 IpAddress       read-only       mandatory
  4279. +bgpPathAttrInterASMetric bgpPathAttrEntry.6 IpAddress       read-only       mandatory
  4280. +
  4281. +
  4282. +-- automatically generated by mosy 7.0 #65 (dbc), do not edit!
  4283. +
  4284. +-- object definitions compiled from RFC1271-MIB
  4285. +
  4286. +rmon                 mib-2.16
  4287. +statistics           rmon.1
  4288. +history              rmon.2
  4289. +alarm                rmon.3
  4290. +hosts                rmon.4
  4291. +hostTopN             rmon.5
  4292. +matrix               rmon.6
  4293. +filter               rmon.7
  4294. +capture              rmon.8
  4295. +event                rmon.9
  4296. +
  4297. +etherStatsTable      statistics.1     Aggregate       not-accessible  mandatory
  4298. +etherStatsEntry      etherStatsTable.1 Aggregate       not-accessible  mandatory
  4299. +etherStatsIndex      etherStatsEntry.1 INTEGER         read-only       mandatory
  4300. +etherStatsDataSource etherStatsEntry.2 ObjectID        read-write      mandatory
  4301. +etherStatsDropEvents etherStatsEntry.3 Counter         read-only       mandatory
  4302. +etherStatsOctets     etherStatsEntry.4 Counter         read-only       mandatory
  4303. +etherStatsPkts       etherStatsEntry.5 Counter         read-only       mandatory
  4304. +etherStatsBroadcastPkts etherStatsEntry.6 Counter         read-only       mandatory
  4305. +etherStatsMulticastPkts etherStatsEntry.7 Counter         read-only       mandatory
  4306. +etherStatsCRCAlignErrors etherStatsEntry.8 Counter         read-only       mandatory
  4307. +etherStatsUndersizePkts etherStatsEntry.9 Counter         read-only       mandatory
  4308. +etherStatsOversizePkts etherStatsEntry.10 Counter         read-only       mandatory
  4309. +etherStatsFragments  etherStatsEntry.11 Counter         read-only       mandatory
  4310. +etherStatsJabbers    etherStatsEntry.12 Counter         read-only       mandatory
  4311. +etherStatsCollisions etherStatsEntry.13 Counter         read-only       mandatory
  4312. +etherStatsPkts64Octets etherStatsEntry.14 Counter         read-only       mandatory
  4313. +etherStatsPkts65to127Octets etherStatsEntry.15 Counter         read-only       mandatory
  4314. +etherStatsPkts128to255Octets etherStatsEntry.16 Counter         read-only       mandatory
  4315. +etherStatsPkts256to511Octets etherStatsEntry.17 Counter         read-only       mandatory
  4316. +etherStatsPkts512to1023Octets etherStatsEntry.18 Counter         read-only       mandatory
  4317. +etherStatsPkts1024to1518Octets etherStatsEntry.19 Counter         read-only       mandatory
  4318. +etherStatsOwner      etherStatsEntry.20 DisplayString   read-write      mandatory
  4319. +etherStatsStatus     etherStatsEntry.21 INTEGER         read-write      mandatory
  4320. +historyControlTable  history.1        Aggregate       not-accessible  mandatory
  4321. +historyControlEntry  historyControlTable.1 Aggregate       not-accessible  mandatory
  4322. +historyControlIndex  historyControlEntry.1 INTEGER         read-only       mandatory
  4323. +historyControlDataSource historyControlEntry.2 ObjectID        read-write      mandatory
  4324. +historyControlBucketsRequested historyControlEntry.3 INTEGER         read-write      mandatory
  4325. +historyControlBucketsGranted historyControlEntry.4 INTEGER         read-only       mandatory
  4326. +historyControlInterval historyControlEntry.5 INTEGER         read-write      mandatory
  4327. +historyControlOwner  historyControlEntry.6 DisplayString   read-write      mandatory
  4328. +historyControlStatus historyControlEntry.7 INTEGER         read-write      mandatory
  4329. +etherHistoryTable    history.2        Aggregate       not-accessible  mandatory
  4330. +etherHistoryEntry    etherHistoryTable.1 Aggregate       not-accessible  mandatory
  4331. +etherHistoryIndex    etherHistoryEntry.1 INTEGER         read-only       mandatory
  4332. +etherHistorySampleIndex etherHistoryEntry.2 INTEGER         read-only       mandatory
  4333. +etherHistoryIntervalStart etherHistoryEntry.3 TimeTicks       read-only       mandatory
  4334. +etherHistoryDropEvents etherHistoryEntry.4 Counter         read-only       mandatory
  4335. +etherHistoryOctets   etherHistoryEntry.5 Counter         read-only       mandatory
  4336. +etherHistoryPkts     etherHistoryEntry.6 Counter         read-only       mandatory
  4337. +etherHistoryBroadcastPkts etherHistoryEntry.7 Counter         read-only       mandatory
  4338. +etherHistoryMulticastPkts etherHistoryEntry.8 Counter         read-only       mandatory
  4339. +etherHistoryCRCAlignErrors etherHistoryEntry.9 Counter         read-only       mandatory
  4340. +etherHistoryUndersizePkts etherHistoryEntry.10 Counter         read-only       mandatory
  4341. +etherHistoryOversizePkts etherHistoryEntry.11 Counter         read-only       mandatory
  4342. +etherHistoryFragments etherHistoryEntry.12 Counter         read-only       mandatory
  4343. +etherHistoryJabbers  etherHistoryEntry.13 Counter         read-only       mandatory
  4344. +etherHistoryCollisions etherHistoryEntry.14 Counter         read-only       mandatory
  4345. +etherHistoryUtilization etherHistoryEntry.15 INTEGER         read-only       mandatory
  4346. +alarmTable           alarm.1          Aggregate       not-accessible  mandatory
  4347. +alarmEntry           alarmTable.1     Aggregate       not-accessible  mandatory
  4348. +alarmIndex           alarmEntry.1     INTEGER         read-only       mandatory
  4349. +alarmInterval        alarmEntry.2     INTEGER         read-write      mandatory
  4350. +alarmVariable        alarmEntry.3     ObjectID        read-write      mandatory
  4351. +alarmSampleType      alarmEntry.4     INTEGER         read-write      mandatory
  4352. +alarmValue           alarmEntry.5     INTEGER         read-only       mandatory
  4353. +alarmStartupAlarm    alarmEntry.6     INTEGER         read-write      mandatory
  4354. +alarmRisingThreshold alarmEntry.7     INTEGER         read-write      mandatory
  4355. +alarmFallingThreshold alarmEntry.8     INTEGER         read-write      mandatory
  4356. +alarmRisingEventIndex alarmEntry.9     INTEGER         read-write      mandatory
  4357. +alarmFallingEventIndex alarmEntry.10    INTEGER         read-write      mandatory
  4358. +alarmOwner           alarmEntry.11    DisplayString   read-write      mandatory
  4359. +alarmStatus          alarmEntry.12    INTEGER         read-write      mandatory
  4360. +hostControlTable     hosts.1          Aggregate       not-accessible  mandatory
  4361. +hostControlEntry     hostControlTable.1 Aggregate       not-accessible  mandatory
  4362. +hostControlIndex     hostControlEntry.1 INTEGER         read-only       mandatory
  4363. +hostControlDataSource hostControlEntry.2 ObjectID        read-write      mandatory
  4364. +hostControlTableSize hostControlEntry.3 INTEGER         read-only       mandatory
  4365. +hostControlLastDeleteTime hostControlEntry.4 TimeTicks       read-only       mandatory
  4366. +hostControlOwner     hostControlEntry.5 DisplayString   read-write      mandatory
  4367. +hostControlStatus    hostControlEntry.6 INTEGER         read-write      mandatory
  4368. +hostTable            hosts.2          Aggregate       not-accessible  mandatory
  4369. +hostEntry            hostTable.1      Aggregate       not-accessible  mandatory
  4370. +hostAddress          hostEntry.1      OctetString     read-only       mandatory
  4371. +hostCreationOrder    hostEntry.2      INTEGER         read-only       mandatory
  4372. +hostIndex            hostEntry.3      INTEGER         read-only       mandatory
  4373. +hostInPkts           hostEntry.4      Counter         read-only       mandatory
  4374. +hostOutPkts          hostEntry.5      Counter         read-only       mandatory
  4375. +hostInOctets         hostEntry.6      Counter         read-only       mandatory
  4376. +hostOutOctets        hostEntry.7      Counter         read-only       mandatory
  4377. +hostOutErrors        hostEntry.8      Counter         read-only       mandatory
  4378. +hostOutBroadcastPkts hostEntry.9      Counter         read-only       mandatory
  4379. +hostOutMulticastPkts hostEntry.10     Counter         read-only       mandatory
  4380. +hostTimeTable        hosts.3          Aggregate       not-accessible  mandatory
  4381. +hostTimeEntry        hostTimeTable.1  Aggregate       not-accessible  mandatory
  4382. +hostTimeAddress      hostTimeEntry.1  OctetString     read-only       mandatory
  4383. +hostTimeCreationOrder hostTimeEntry.2  INTEGER         read-only       mandatory
  4384. +hostTimeIndex        hostTimeEntry.3  INTEGER         read-only       mandatory
  4385. +hostTimeInPkts       hostTimeEntry.4  Counter         read-only       mandatory
  4386. +hostTimeOutPkts      hostTimeEntry.5  Counter         read-only       mandatory
  4387. +hostTimeInOctets     hostTimeEntry.6  Counter         read-only       mandatory
  4388. +hostTimeOutOctets    hostTimeEntry.7  Counter         read-only       mandatory
  4389. +hostTimeOutErrors    hostTimeEntry.8  Counter         read-only       mandatory
  4390. +hostTimeOutBroadcastPkts hostTimeEntry.9  Counter         read-only       mandatory
  4391. +hostTimeOutMulticastPkts hostTimeEntry.10 Counter         read-only       mandatory
  4392. +hostTopNControlTable hostTopN.1       Aggregate       not-accessible  mandatory
  4393. +hostTopNControlEntry hostTopNControlTable.1 Aggregate       not-accessible  mandatory
  4394. +hostTopNControlIndex hostTopNControlEntry.1 INTEGER         read-only       mandatory
  4395. +hostTopNHostIndex    hostTopNControlEntry.2 INTEGER         read-write      mandatory
  4396. +hostTopNRateBase     hostTopNControlEntry.3 INTEGER         read-write      mandatory
  4397. +hostTopNTimeRemaining hostTopNControlEntry.4 INTEGER         read-write      mandatory
  4398. +hostTopNDuration     hostTopNControlEntry.5 INTEGER         read-only       mandatory
  4399. +hostTopNRequestedSize hostTopNControlEntry.6 INTEGER         read-write      mandatory
  4400. +hostTopNGrantedSize  hostTopNControlEntry.7 INTEGER         read-only       mandatory
  4401. +hostTopNStartTime    hostTopNControlEntry.8 TimeTicks       read-only       mandatory
  4402. +hostTopNOwner        hostTopNControlEntry.9 DisplayString   read-write      mandatory
  4403. +hostTopNStatus       hostTopNControlEntry.10 INTEGER         read-write      mandatory
  4404. +hostTopNTable        hostTopN.2       Aggregate       not-accessible  mandatory
  4405. +hostTopNEntry        hostTopNTable.1  Aggregate       not-accessible  mandatory
  4406. +hostTopNReport       hostTopNEntry.1  INTEGER         read-only       mandatory
  4407. +hostTopNIndex        hostTopNEntry.2  INTEGER         read-only       mandatory
  4408. +hostTopNAddress      hostTopNEntry.3  OctetString     read-only       mandatory
  4409. +hostTopNRate         hostTopNEntry.4  INTEGER         read-only       mandatory
  4410. +matrixControlTable   matrix.1         Aggregate       not-accessible  mandatory
  4411. +matrixControlEntry   matrixControlTable.1 Aggregate       not-accessible  mandatory
  4412. +matrixControlIndex   matrixControlEntry.1 INTEGER         read-only       mandatory
  4413. +matrixControlDataSource matrixControlEntry.2 ObjectID        read-write      mandatory
  4414. +matrixControlTableSize matrixControlEntry.3 INTEGER         read-only       mandatory
  4415. +matrixControlLastDeleteTime matrixControlEntry.4 TimeTicks       read-only       mandatory
  4416. +matrixControlOwner   matrixControlEntry.5 DisplayString   read-write      mandatory
  4417. +matrixControlStatus  matrixControlEntry.6 INTEGER         read-write      mandatory
  4418. +matrixSDTable        matrix.2         Aggregate       not-accessible  mandatory
  4419. +matrixSDEntry        matrixSDTable.1  Aggregate       not-accessible  mandatory
  4420. +matrixSDSourceAddress matrixSDEntry.1  OctetString     read-only       mandatory
  4421. +matrixSDDestAddress  matrixSDEntry.2  OctetString     read-only       mandatory
  4422. +matrixSDIndex        matrixSDEntry.3  INTEGER         read-only       mandatory
  4423. +matrixSDPkts         matrixSDEntry.4  Counter         read-only       mandatory
  4424. +matrixSDOctets       matrixSDEntry.5  Counter         read-only       mandatory
  4425. +matrixSDErrors       matrixSDEntry.6  Counter         read-only       mandatory
  4426. +matrixDSTable        matrix.3         Aggregate       not-accessible  mandatory
  4427. +matrixDSEntry        matrixDSTable.1  Aggregate       not-accessible  mandatory
  4428. +matrixDSSourceAddress matrixDSEntry.1  OctetString     read-only       mandatory
  4429. +matrixDSDestAddress  matrixDSEntry.2  OctetString     read-only       mandatory
  4430. +matrixDSIndex        matrixDSEntry.3  INTEGER         read-only       mandatory
  4431. +matrixDSPkts         matrixDSEntry.4  Counter         read-only       mandatory
  4432. +matrixDSOctets       matrixDSEntry.5  Counter         read-only       mandatory
  4433. +matrixDSErrors       matrixDSEntry.6  Counter         read-only       mandatory
  4434. +filterTable          filter.1         Aggregate       not-accessible  mandatory
  4435. +filterEntry          filterTable.1    Aggregate       not-accessible  mandatory
  4436. +filterIndex          filterEntry.1    INTEGER         read-only       mandatory
  4437. +filterChannelIndex   filterEntry.2    INTEGER         read-write      mandatory
  4438. +filterPktDataOffset  filterEntry.3    INTEGER         read-write      mandatory
  4439. +filterPktData        filterEntry.4    OctetString     read-write      mandatory
  4440. +filterPktDataMask    filterEntry.5    OctetString     read-write      mandatory
  4441. +filterPktDataNotMask filterEntry.6    OctetString     read-write      mandatory
  4442. +filterPktStatus      filterEntry.7    INTEGER         read-write      mandatory
  4443. +filterPktStatusMask  filterEntry.8    INTEGER         read-write      mandatory
  4444. +filterPktStatusNotMask filterEntry.9    INTEGER         read-write      mandatory
  4445. +filterOwner          filterEntry.10   DisplayString   read-write      mandatory
  4446. +filterStatus         filterEntry.11   INTEGER         read-write      mandatory
  4447. +channelTable         filter.2         Aggregate       not-accessible  mandatory
  4448. +channelEntry         channelTable.1   Aggregate       not-accessible  mandatory
  4449. +channelIndex         channelEntry.1   INTEGER         read-only       mandatory
  4450. +channelIfIndex       channelEntry.2   INTEGER         read-write      mandatory
  4451. +channelAcceptType    channelEntry.3   INTEGER         read-write      mandatory
  4452. +channelDataControl   channelEntry.4   INTEGER         read-write      mandatory
  4453. +channelTurnOnEventIndex channelEntry.5   INTEGER         read-write      mandatory
  4454. +channelTurnOffEventIndex channelEntry.6   INTEGER         read-write      mandatory
  4455. +channelEventIndex    channelEntry.7   INTEGER         read-write      mandatory
  4456. +channelEventStatus   channelEntry.8   INTEGER         read-write      mandatory
  4457. +channelMatches       channelEntry.9   Counter         read-only       mandatory
  4458. +channelDescription   channelEntry.10  DisplayString   read-write      mandatory
  4459. +channelOwner         channelEntry.11  DisplayString   read-write      mandatory
  4460. +channelStatus        channelEntry.12  INTEGER         read-write      mandatory
  4461. +bufferControlTable   capture.1        Aggregate       not-accessible  mandatory
  4462. +bufferControlEntry   bufferControlTable.1 Aggregate       not-accessible  mandatory
  4463. +bufferControlIndex   bufferControlEntry.1 INTEGER         read-only       mandatory
  4464. +bufferControlChannelIndex bufferControlEntry.2 INTEGER         read-write      mandatory
  4465. +bufferControlFullStatus bufferControlEntry.3 INTEGER         read-only       mandatory
  4466. +bufferControlFullAction bufferControlEntry.4 INTEGER         read-write      mandatory
  4467. +bufferControlCaptureSliceSize bufferControlEntry.5 INTEGER         read-write      mandatory
  4468. +bufferControlDownloadSliceSize bufferControlEntry.6 INTEGER         read-write      mandatory
  4469. +bufferControlDownloadOffset bufferControlEntry.7 INTEGER         read-write      mandatory
  4470. +bufferControlMaxOctetsRequested bufferControlEntry.8 INTEGER         read-write      mandatory
  4471. +bufferControlMaxOctetsGranted bufferControlEntry.9 INTEGER         read-only       mandatory
  4472. +bufferControlCapturedPackets bufferControlEntry.10 INTEGER         read-only       mandatory
  4473. +bufferControlTurnOnTime bufferControlEntry.11 TimeTicks       read-only       mandatory
  4474. +bufferControlOwner   bufferControlEntry.12 DisplayString   read-write      mandatory
  4475. +bufferControlStatus  bufferControlEntry.13 INTEGER         read-write      mandatory
  4476. +captureBufferTable   capture.2        Aggregate       not-accessible  mandatory
  4477. +captureBufferEntry   captureBufferTable.1 Aggregate       not-accessible  mandatory
  4478. +captureBufferControlIndex captureBufferEntry.1 INTEGER         read-only       mandatory
  4479. +captureBufferIndex   captureBufferEntry.2 INTEGER         read-only       mandatory
  4480. +captureBufferPacketID captureBufferEntry.3 INTEGER         read-only       mandatory
  4481. +captureBufferPacketData captureBufferEntry.4 OctetString     read-only       mandatory
  4482. +captureBufferPacketLength captureBufferEntry.5 INTEGER         read-only       mandatory
  4483. +captureBufferPacketTime captureBufferEntry.6 INTEGER         read-only       mandatory
  4484. +captureBufferPacketStatus captureBufferEntry.7 INTEGER         read-only       mandatory
  4485. +eventTable           event.1          Aggregate       not-accessible  mandatory
  4486. +eventEntry           eventTable.1     Aggregate       not-accessible  mandatory
  4487. +eventIndex           eventEntry.1     INTEGER         read-only       mandatory
  4488. +eventDescription     eventEntry.2     DisplayString   read-write      mandatory
  4489. +eventType            eventEntry.3     INTEGER         read-write      mandatory
  4490. +eventCommunity       eventEntry.4     OctetString     read-write      mandatory
  4491. +eventLastTimeSent    eventEntry.5     TimeTicks       read-only       mandatory
  4492. +eventOwner           eventEntry.6     DisplayString   read-write      mandatory
  4493. +eventStatus          eventEntry.7     INTEGER         read-write      mandatory
  4494. +logTable             event.2          Aggregate       not-accessible  mandatory
  4495. +logEntry             logTable.1       Aggregate       not-accessible  mandatory
  4496. +logEventIndex        logEntry.1       INTEGER         read-only       mandatory
  4497. +logIndex             logEntry.2       INTEGER         read-only       mandatory
  4498. +logTime              logEntry.3       TimeTicks       read-only       mandatory
  4499. +logDescription       logEntry.4       DisplayString   read-only       mandatory
  4500. +
  4501. +
  4502. +-- automatically generated by mosy 7.0 #65 (dbc), do not edit!
  4503. +
  4504. +-- object definitions compiled from RFC1286-MIB
  4505. +
  4506. +dot1dBridge          mib-2.17
  4507. +dot1dBase            dot1dBridge.1
  4508. +dot1dStp             dot1dBridge.2
  4509. +dot1dSr              dot1dBridge.3
  4510. +dot1dTp              dot1dBridge.4
  4511. +dot1dStatic          dot1dBridge.5
  4512. +
  4513. +dot1dBaseBridgeAddress dot1dBase.1      OctetString     read-only       mandatory
  4514. +dot1dBaseNumPorts    dot1dBase.2      INTEGER         read-only       mandatory
  4515. +dot1dBaseType        dot1dBase.3      INTEGER         read-only       mandatory
  4516. +dot1dBasePortTable   dot1dBase.4      Aggregate       not-accessible  mandatory
  4517. +dot1dBasePortEntry   dot1dBasePortTable.1 Aggregate       not-accessible  mandatory
  4518. +dot1dBasePort        dot1dBasePortEntry.1 INTEGER         read-only       mandatory
  4519. +dot1dBasePortIfIndex dot1dBasePortEntry.2 INTEGER         read-only       mandatory
  4520. +dot1dBasePortCircuit dot1dBasePortEntry.3 ObjectID        read-only       mandatory
  4521. +dot1dBasePortDelayExceededDiscards dot1dBasePortEntry.4 Counter         read-only       mandatory
  4522. +dot1dBasePortMtuExceededDiscards dot1dBasePortEntry.5 Counter         read-only       mandatory
  4523. +dot1dStpProtocolSpecification dot1dStp.1       INTEGER         read-only       mandatory
  4524. +dot1dStpPriority     dot1dStp.2       INTEGER         read-write      mandatory
  4525. +dot1dStpTimeSinceTopologyChange dot1dStp.3       TimeTicks       read-only       mandatory
  4526. +dot1dStpTopChanges   dot1dStp.4       Counter         read-only       mandatory
  4527. +dot1dStpDesignatedRoot dot1dStp.5       OctetString     read-only       mandatory
  4528. +dot1dStpRootCost     dot1dStp.6       INTEGER         read-only       mandatory
  4529. +dot1dStpRootPort     dot1dStp.7       INTEGER         read-only       mandatory
  4530. +dot1dStpMaxAge       dot1dStp.8       INTEGER         read-only       mandatory
  4531. +dot1dStpHelloTime    dot1dStp.9       INTEGER         read-only       mandatory
  4532. +dot1dStpHoldTime     dot1dStp.10      INTEGER         read-only       mandatory
  4533. +dot1dStpForwardDelay dot1dStp.11      INTEGER         read-only       mandatory
  4534. +dot1dStpBridgeMaxAge dot1dStp.12      INTEGER         read-write      mandatory
  4535. +dot1dStpBridgeHelloTime dot1dStp.13      INTEGER         read-write      mandatory
  4536. +dot1dStpBridgeForwardDelay dot1dStp.14      INTEGER         read-write      mandatory
  4537. +dot1dStpPortTable    dot1dStp.15      Aggregate       not-accessible  mandatory
  4538. +dot1dStpPortEntry    dot1dStpPortTable.1 Aggregate       not-accessible  mandatory
  4539. +dot1dStpPort         dot1dStpPortEntry.1 INTEGER         read-only       mandatory
  4540. +dot1dStpPortPriority dot1dStpPortEntry.2 INTEGER         read-write      mandatory
  4541. +dot1dStpPortState    dot1dStpPortEntry.3 INTEGER         read-only       mandatory
  4542. +dot1dStpPortEnable   dot1dStpPortEntry.4 INTEGER         read-write      mandatory
  4543. +dot1dStpPortPathCost dot1dStpPortEntry.5 INTEGER         read-write      mandatory
  4544. +dot1dStpPortDesignatedRoot dot1dStpPortEntry.6 OctetString     read-only       mandatory
  4545. +dot1dStpPortDesignatedCost dot1dStpPortEntry.7 INTEGER         read-only       mandatory
  4546. +dot1dStpPortDesignatedBridge dot1dStpPortEntry.8 OctetString     read-only       mandatory
  4547. +dot1dStpPortDesignatedPort dot1dStpPortEntry.9 OctetString     read-only       mandatory
  4548. +dot1dStpPortForwardTransitions dot1dStpPortEntry.10 Counter         read-only       mandatory
  4549. +dot1dSrPortTable     dot1dSr.1        Aggregate       not-accessible  mandatory
  4550. +dot1dSrPortEntry     dot1dSrPortTable.1 Aggregate       not-accessible  mandatory
  4551. +dot1dSrPort          dot1dSrPortEntry.1 INTEGER         read-only       mandatory
  4552. +dot1dSrPortHopCount  dot1dSrPortEntry.2 INTEGER         read-write      mandatory
  4553. +dot1dSrPortLocalSegment dot1dSrPortEntry.3 INTEGER         read-write      mandatory
  4554. +dot1dSrPortBridgeNum dot1dSrPortEntry.4 INTEGER         read-write      mandatory
  4555. +dot1dSrPortTargetSegment dot1dSrPortEntry.5 INTEGER         read-write      mandatory
  4556. +dot1dSrPortLargestFrame dot1dSrPortEntry.6 INTEGER         read-write      mandatory
  4557. +dot1dSrPortSTESpanMode dot1dSrPortEntry.7 INTEGER         read-write      mandatory
  4558. +dot1dSrPortSpecInFrames dot1dSrPortEntry.8 Counter         read-only       mandatory
  4559. +dot1dSrPortSpecOutFrames dot1dSrPortEntry.9 Counter         read-only       mandatory
  4560. +dot1dSrPortApeInFrames dot1dSrPortEntry.10 Counter         read-only       mandatory
  4561. +dot1dSrPortApeOutFrames dot1dSrPortEntry.11 Counter         read-only       mandatory
  4562. +dot1dSrPortSteInFrames dot1dSrPortEntry.12 Counter         read-only       mandatory
  4563. +dot1dSrPortSteOutFrames dot1dSrPortEntry.13 Counter         read-only       mandatory
  4564. +dot1dSrPortSegmentMismatchDiscards dot1dSrPortEntry.14 Counter         read-only       mandatory
  4565. +dot1dSrPortDuplicateSegmentDiscards dot1dSrPortEntry.15 Counter         read-only       mandatory
  4566. +dot1dSrPortHopCountExceededDiscards dot1dSrPortEntry.16 Counter         read-only       mandatory
  4567. +dot1dTpLearnedEntryDiscards dot1dTp.1        Counter         read-only       mandatory
  4568. +dot1dTpAgingTime     dot1dTp.2        INTEGER         read-write      mandatory
  4569. +dot1dTpFdbTable      dot1dTp.3        Aggregate       not-accessible  mandatory
  4570. +dot1dTpFdbEntry      dot1dTpFdbTable.1 Aggregate       not-accessible  mandatory
  4571. +dot1dTpFdbAddress    dot1dTpFdbEntry.1 OctetString     read-only       mandatory
  4572. +dot1dTpFdbPort       dot1dTpFdbEntry.2 INTEGER         read-only       mandatory
  4573. +dot1dTpFdbStatus     dot1dTpFdbEntry.3 INTEGER         read-only       mandatory
  4574. +dot1dTpPortTable     dot1dTp.4        Aggregate       not-accessible  mandatory
  4575. +dot1dTpPortEntry     dot1dTpPortTable.1 Aggregate       not-accessible  mandatory
  4576. +dot1dTpPort          dot1dTpPortEntry.1 INTEGER         read-only       mandatory
  4577. +dot1dTpPortMaxInfo   dot1dTpPortEntry.2 INTEGER         read-only       mandatory
  4578. +dot1dTpPortInFrames  dot1dTpPortEntry.3 Counter         read-only       mandatory
  4579. +dot1dTpPortOutFrames dot1dTpPortEntry.4 Counter         read-only       mandatory
  4580. +dot1dTpPortInDiscards dot1dTpPortEntry.5 Counter         read-only       mandatory
  4581. +dot1dStaticTable     dot1dStatic.1    Aggregate       not-accessible  mandatory
  4582. +dot1dStaticEntry     dot1dStaticTable.1 Aggregate       not-accessible  mandatory
  4583. +dot1dStaticAddress   dot1dStaticEntry.1 OctetString     read-write      mandatory
  4584. +dot1dStaticReceivePort dot1dStaticEntry.2 INTEGER         read-write      mandatory
  4585. +dot1dStaticAllowedToGoTo dot1dStaticEntry.3 OctetString     read-write      mandatory
  4586. +dot1dStaticStatus    dot1dStaticEntry.4 INTEGER         read-write      mandatory
  4587. +
  4588. +
  4589. +-- automatically generated by mosy 7.0 #62 (dbc), do not edit!
  4590. +
  4591. +-- object definitions compiled from RFCxxxx-MIB
  4592. +
  4593. +dot3                 experimental.3
  4594. +dot3Errors           dot3.7
  4595. +dot3ErrorInitError   dot3Errors.1
  4596. +dot3ErrorLoopbackError dot3Errors.2
  4597. +dot3Tests            dot3.6
  4598. +dot3TestTdr          dot3Tests.1
  4599. +dot3ChipSets         dot3.8
  4600. +dot3ChipSetAMD       dot3ChipSets.1
  4601. +dot3ChipSetAMD7990   dot3ChipSetAMD.1
  4602. +dot3ChipSetAMD79900  dot3ChipSetAMD.2
  4603. +dot3ChipSetIntel     dot3ChipSets.2
  4604. +dot3ChipSetIntel82586 dot3ChipSetIntel.1
  4605. +dot3ChipSetIntel82596 dot3ChipSetIntel.2
  4606. +dot3ChipSetSeeq      dot3ChipSets.3
  4607. +dot3ChipSetSeeq8003  dot3ChipSetSeeq.1
  4608. +dot3ChipSetNational  dot3ChipSets.4
  4609. +dot3ChipSetNational8390 dot3ChipSetNational.1
  4610. +dot3ChipSetNationalSonic dot3ChipSetNational.2
  4611. +dot3ChipSetFujitsu   dot3ChipSets.5
  4612. +dot3ChipSetFujitsu86950 dot3ChipSetFujitsu.1
  4613. +
  4614. +dot3Table            dot3.1           Aggregate       not-accessible  mandatory
  4615. +dot3Entry            dot3Table.1      Aggregate       not-accessible  mandatory
  4616. +dot3Index            dot3Entry.1      INTEGER         read-only       mandatory
  4617. +dot3InitializeMac    dot3Entry.2      INTEGER         read-write      mandatory
  4618. +dot3MacSubLayerStatus dot3Entry.3      INTEGER         read-write      mandatory
  4619. +dot3MulticastReceiveStatus dot3Entry.4      INTEGER         read-write      mandatory
  4620. +dot3TxEnabled        dot3Entry.5      INTEGER         read-write      mandatory
  4621. +dot3TestTdrValue     dot3Entry.6      Gauge           read-only       mandatory
  4622. +dot3StatsTable       dot3.2           Aggregate       not-accessible  mandatory
  4623. +dot3StatsEntry       dot3StatsTable.1 Aggregate       not-accessible  mandatory
  4624. +dot3StatsIndex       dot3StatsEntry.1 INTEGER         read-only       mandatory
  4625. +dot3StatsAlignmentErrors dot3StatsEntry.2 Counter         read-only       mandatory
  4626. +dot3StatsFCSErrors   dot3StatsEntry.3 Counter         read-only       mandatory
  4627. +dot3StatsSingleCollisionFrames dot3StatsEntry.4 Counter         read-only       mandatory
  4628. +dot3StatsMultipleCollisionFrames dot3StatsEntry.5 Counter         read-only       mandatory
  4629. +dot3StatsSQETestErrors dot3StatsEntry.6 Counter         read-only       mandatory
  4630. +dot3StatsDeferredTransmissions dot3StatsEntry.7 Counter         read-only       mandatory
  4631. +dot3StatsLateCollisions dot3StatsEntry.8 Counter         read-only       mandatory
  4632. +dot3StatsExcessiveCollisions dot3StatsEntry.9 Counter         read-only       mandatory
  4633. +dot3StatsInternalMacTransmitErrors dot3StatsEntry.10 Counter         read-only       mandatory
  4634. +dot3StatsCarrierSenseErrors dot3StatsEntry.11 Counter         read-only       mandatory
  4635. +dot3StatsExcessiveDeferrals dot3StatsEntry.12 Counter         read-only       mandatory
  4636. +dot3StatsFrameTooLongs dot3StatsEntry.13 Counter         read-only       mandatory
  4637. +dot3StatsInRangeLengthErrors dot3StatsEntry.14 Counter         read-only       mandatory
  4638. +dot3StatsOutOfRangeLengthFields dot3StatsEntry.15 Counter         read-only       mandatory
  4639. +dot3StatsInternalMacReceiveErrors dot3StatsEntry.16 Counter         read-only       mandatory
  4640. +dot3CollTable        dot3.5           Aggregate       not-accessible  mandatory
  4641. +dot3CollEntry        dot3CollTable.1  Aggregate       not-accessible  mandatory
  4642. +dot3CollIndex        dot3CollEntry.1  INTEGER         read-only       mandatory
  4643. +dot3CollCount        dot3CollEntry.2  INTEGER         read-only       mandatory
  4644. +dot3CollFrequency    dot3CollEntry.3  Counter         read-only       mandatory
  4645. +
  4646. +
  4647. +-- automatically generated by mosy 7.0 #62 (dbc), do not edit!
  4648. +
  4649. +-- object definitions compiled from RFC1231-MIB
  4650. +
  4651. +dot5                 transmission.9
  4652. +dot5Tests            dot5.3
  4653. +testInsertFunc       dot5Tests.1
  4654. +dot5ChipSets         dot5.4
  4655. +chipSetIBM16         dot5ChipSets.1
  4656. +chipSetTItms380      dot5ChipSets.2
  4657. +chipSetTItms380c16   dot5ChipSets.3
  4658. +
  4659. +dot5Table            dot5.1           Aggregate       not-accessible  mandatory
  4660. +dot5Entry            dot5Table.1      Aggregate       not-accessible  mandatory
  4661. +dot5IfIndex          dot5Entry.1      INTEGER         read-only       mandatory
  4662. +dot5Commands         dot5Entry.2      INTEGER         read-write      mandatory
  4663. +dot5RingStatus       dot5Entry.3      INTEGER         read-only       mandatory
  4664. +dot5RingState        dot5Entry.4      INTEGER         read-only       mandatory
  4665. +dot5RingOpenStatus   dot5Entry.5      INTEGER         read-only       mandatory
  4666. +dot5RingSpeed        dot5Entry.6      INTEGER         read-write      mandatory
  4667. +dot5UpStream         dot5Entry.7      OctetString     read-only       mandatory
  4668. +dot5ActMonParticipate dot5Entry.8      INTEGER         read-write      mandatory
  4669. +dot5Functional       dot5Entry.9      OctetString     read-write      mandatory
  4670. +dot5StatsTable       dot5.2           Aggregate       not-accessible  mandatory
  4671. +dot5StatsEntry       dot5StatsTable.1 Aggregate       not-accessible  mandatory
  4672. +dot5StatsIfIndex     dot5StatsEntry.1 INTEGER         read-only       mandatory
  4673. +dot5StatsLineErrors  dot5StatsEntry.2 Counter         read-only       mandatory
  4674. +dot5StatsBurstErrors dot5StatsEntry.3 Counter         read-only       mandatory
  4675. +dot5StatsACErrors    dot5StatsEntry.4 Counter         read-only       mandatory
  4676. +dot5StatsAbortTransErrors dot5StatsEntry.5 Counter         read-only       mandatory
  4677. +dot5StatsInternalErrors dot5StatsEntry.6 Counter         read-only       mandatory
  4678. +dot5StatsLostFrameErrors dot5StatsEntry.7 Counter         read-only       mandatory
  4679. +dot5StatsReceiveCongestions dot5StatsEntry.8 Counter         read-only       mandatory
  4680. +dot5StatsFrameCopiedErrors dot5StatsEntry.9 Counter         read-only       mandatory
  4681. +dot5StatsTokenErrors dot5StatsEntry.10 Counter         read-only       mandatory
  4682. +dot5StatsSoftErrors  dot5StatsEntry.11 Counter         read-only       mandatory
  4683. +dot5StatsHardErrors  dot5StatsEntry.12 Counter         read-only       mandatory
  4684. +dot5StatsSignalLoss  dot5StatsEntry.13 Counter         read-only       mandatory
  4685. +dot5StatsTransmitBeacons dot5StatsEntry.14 Counter         read-only       mandatory
  4686. +dot5StatsRecoverys   dot5StatsEntry.15 Counter         read-only       mandatory
  4687. +dot5StatsLobeWires   dot5StatsEntry.16 Counter         read-only       mandatory
  4688. +dot5StatsRemoves     dot5StatsEntry.17 Counter         read-only       mandatory
  4689. +dot5StatsSingles     dot5StatsEntry.18 Counter         read-only       mandatory
  4690. +dot5StatsFreqErrors  dot5StatsEntry.19 Counter         read-only       optional
  4691. +dot5TimerTable       dot5.5           Aggregate       not-accessible  mandatory
  4692. +dot5TimerEntry       dot5TimerTable.1 Aggregate       not-accessible  mandatory
  4693. +dot5TimerIfIndex     dot5TimerEntry.1 INTEGER         read-only       mandatory
  4694. +dot5TimerReturnRepeat dot5TimerEntry.2 INTEGER         read-only       mandatory
  4695. +dot5TimerHolding     dot5TimerEntry.3 INTEGER         read-only       mandatory
  4696. +dot5TimerQueuePDU    dot5TimerEntry.4 INTEGER         read-only       mandatory
  4697. +dot5TimerValidTransmit dot5TimerEntry.5 INTEGER         read-only       mandatory
  4698. +dot5TimerNoToken     dot5TimerEntry.6 INTEGER         read-only       mandatory
  4699. +dot5TimerActiveMon   dot5TimerEntry.7 INTEGER         read-only       mandatory
  4700. +dot5TimerStandbyMon  dot5TimerEntry.8 INTEGER         read-only       mandatory
  4701. +dot5TimerErrorReport dot5TimerEntry.9 INTEGER         read-only       mandatory
  4702. +dot5TimerBeaconTransmit dot5TimerEntry.10 INTEGER         read-only       mandatory
  4703. +dot5TimerBeaconReceive dot5TimerEntry.11 INTEGER         read-only       mandatory
  4704. +
  4705. +
  4706. +-- automatically generated by mosy 7.0 #62 (dbc), do not edit!
  4707. +
  4708. +-- object definitions compiled from RFC1230-MIB
  4709. +
  4710. +dot4                 transmission.8
  4711. +dot4Tests            dot4.5
  4712. +dot4Errors           dot4.4
  4713. +dot4ModemInitFailed  dot4Errors.1
  4714. +testFifoPath         dot4Tests.1
  4715. +testExternalLoopback dot4Tests.2
  4716. +dot4ChipSets         dot4.6
  4717. +chipSetMc68824       dot4ChipSets.1
  4718. +
  4719. +dot4Table            dot4.1           Aggregate       not-accessible  mandatory
  4720. +dot4Entry            dot4Table.1      Aggregate       not-accessible  mandatory
  4721. +dot4IfIndex          dot4Entry.1      INTEGER         read-only       mandatory
  4722. +dot4Options          dot4Entry.2      INTEGER         read-only       mandatory
  4723. +dot4State            dot4Entry.3      INTEGER         read-only       mandatory
  4724. +dot4Commands         dot4Entry.4      INTEGER         read-write      mandatory
  4725. +dot4MacAddrLen       dot4Entry.5      INTEGER         read-only       mandatory
  4726. +dot4NextStation      dot4Entry.6      OctetString     read-only       mandatory
  4727. +dot4PreviousStation  dot4Entry.7      OctetString     read-only       mandatory
  4728. +dot4SlotTime         dot4Entry.8      INTEGER         read-only       mandatory
  4729. +dot4LastTokenRotTime dot4Entry.9      INTEGER         read-only       mandatory
  4730. +dot4HiPriTokenHoldTime dot4Entry.10     INTEGER         read-only       mandatory
  4731. +dot4TargetRotTimeClass4 dot4Entry.11     INTEGER         read-only       mandatory
  4732. +dot4TargetRotTimeClass2 dot4Entry.12     INTEGER         read-only       mandatory
  4733. +dot4TargetRotTimeClass0 dot4Entry.13     INTEGER         read-only       mandatory
  4734. +dot4TargetRotTimeRingMaint dot4Entry.14     INTEGER         read-only       mandatory
  4735. +dot4RingMaintTimerInitValue dot4Entry.15     INTEGER         read-only       mandatory
  4736. +dot4MaxInterSolicitCount dot4Entry.16     INTEGER         read-only       mandatory
  4737. +dot4MaxRetries       dot4Entry.17     INTEGER         read-only       mandatory
  4738. +dot4MinPostSilencePreambLen dot4Entry.18     INTEGER         read-only       mandatory
  4739. +dot4StandardRevision dot4Entry.19     INTEGER         read-only       mandatory
  4740. +dot4InitTable        dot4.2           Aggregate       not-accessible  mandatory
  4741. +dot4InitEntry        dot4InitTable.1  Aggregate       not-accessible  mandatory
  4742. +dot4InitIfIndex      dot4InitEntry.1  INTEGER         read-only       mandatory
  4743. +dot4InitSlotTime     dot4InitEntry.2  INTEGER         read-write      mandatory
  4744. +dot4InitMaxInterSolicitCount dot4InitEntry.3  INTEGER         read-write      mandatory
  4745. +dot4InitMaxRetries   dot4InitEntry.4  INTEGER         read-write      mandatory
  4746. +dot4InitHiPriTokenHoldTime dot4InitEntry.5  INTEGER         read-write      mandatory
  4747. +dot4InitTargetRotTimeClass4 dot4InitEntry.6  INTEGER         read-write      mandatory
  4748. +dot4InitTargetRotTimeClass2 dot4InitEntry.7  INTEGER         read-write      mandatory
  4749. +dot4InitTargetRotTimeClass0 dot4InitEntry.8  INTEGER         read-write      mandatory
  4750. +dot4InitTargetRotTimeRingMaint dot4InitEntry.9  INTEGER         read-write      mandatory
  4751. +dot4InitRingMaintTimerInitValue dot4InitEntry.10 INTEGER         read-write      mandatory
  4752. +dot4InitMinPostSilencePreambLen dot4InitEntry.11 INTEGER         read-write      mandatory
  4753. +dot4InitInRingDesired dot4InitEntry.12 INTEGER         read-write      mandatory
  4754. +dot4StatsTable       dot4.3           Aggregate       not-accessible  mandatory
  4755. +dot4StatsEntry       dot4StatsTable.1 Aggregate       not-accessible  mandatory
  4756. +dot4StatsIfIndex     dot4StatsEntry.1 INTEGER         read-only       mandatory
  4757. +dot4StatsTokenPasses dot4StatsEntry.2 Counter         read-only       optional
  4758. +dot4StatsTokenHeards dot4StatsEntry.3 Counter         read-only       optional
  4759. +dot4StatsNoSuccessors dot4StatsEntry.4 Counter         read-only       mandatory
  4760. +dot4StatsWhoFollows  dot4StatsEntry.5 Counter         read-only       mandatory
  4761. +dot4StatsTokenPassFails dot4StatsEntry.6 Counter         read-only       mandatory
  4762. +dot4StatsNonSilences dot4StatsEntry.7 Counter         read-only       mandatory
  4763. +dot4StatsFcsErrors   dot4StatsEntry.8 Counter         read-only       mandatory
  4764. +dot4StatsEbitErrors  dot4StatsEntry.9 Counter         read-only       mandatory
  4765. +dot4StatsFrameFrags  dot4StatsEntry.10 Counter         read-only       mandatory
  4766. +dot4StatsFrameTooLongs dot4StatsEntry.11 Counter         read-only       mandatory
  4767. +dot4StatsOverRuns    dot4StatsEntry.12 Counter         read-only       mandatory
  4768. +dot4StatsDupAddresses dot4StatsEntry.13 Counter         read-only       mandatory
  4769. +
  4770. +
  4771.  -- automatically generated by mosy 7.0 #62 (dbc), do not edit!
  4772.  
  4773.  -- object definitions compiled from RFC1232-MIB
  4774. @@ -895,39 +1419,68 @@
  4775.  viewTranType         viewTranEntry.5  INTEGER         read-write      mandatory
  4776.  
  4777.  
  4778. --- automatically generated by mosy 7.0 #65 (dbc), do not edit!
  4779. -
  4780. --- object definitions compiled from RFC1269-MIB
  4781. +-- automatically generated by mosy 7.0 #62 (dbc), do not edit!
  4782.  
  4783. -bgp                  mib-2.15
  4784. +-- object definitions compiled from RFCxxxx-MIB
  4785.  
  4786. -bgpVersion           bgp.1            OctetString     read-only       mandatory
  4787. -bgpLocalAs           bgp.2            INTEGER         read-only       mandatory
  4788. -bgpPeerTable         bgp.3            Aggregate       not-accessible  mandatory
  4789. -bgpIdentifier        bgp.4            IpAddress       read-only       mandatory
  4790. -bgpPeerEntry         bgpPeerTable.1   Aggregate       not-accessible  mandatory
  4791. -bgpPeerIdentifier    bgpPeerEntry.1   IpAddress       read-only       mandatory
  4792. -bgpPeerState         bgpPeerEntry.2   INTEGER         read-only       mandatory
  4793. -bgpPeerAdminStatus   bgpPeerEntry.3   INTEGER         read-write      mandatory
  4794. -bgpPeerNegotiatedVersion bgpPeerEntry.4   INTEGER         read-only       mandatory
  4795. -bgpPeerLocalAddr     bgpPeerEntry.5   IpAddress       read-only       mandatory
  4796. -bgpPeerLocalPort     bgpPeerEntry.6   INTEGER         read-only       mandatory
  4797. -bgpPeerRemoteAddr    bgpPeerEntry.7   IpAddress       read-only       mandatory
  4798. -bgpPeerRemotePort    bgpPeerEntry.8   INTEGER         read-only       mandatory
  4799. -bgpPeerRemoteAs      bgpPeerEntry.9   INTEGER         read-only       mandatory
  4800. -bgpPeerInUpdates     bgpPeerEntry.10  Counter         read-only       mandatory
  4801. -bgpPeerOutUpdates    bgpPeerEntry.11  Counter         read-only       mandatory
  4802. -bgpPeerInTotalMessages bgpPeerEntry.12  Counter         read-only       mandatory
  4803. -bgpPeerOutTotalMessages bgpPeerEntry.13  Counter         read-only       mandatory
  4804. -bgpPeerLastError     bgpPeerEntry.14  OctetString     read-only       mandatory
  4805. -bgpRcvdPathAttrTable bgp.5            Aggregate       not-accessible  mandatory
  4806. -bgpPathAttrEntry     bgpRcvdPathAttrTable.1 Aggregate       not-accessible  mandatory
  4807. -bgpPathAttrPeer      bgpPathAttrEntry.1 IpAddress       read-only       mandatory
  4808. -bgpPathAttrDestNetwork bgpPathAttrEntry.2 IpAddress       read-only       mandatory
  4809. -bgpPathAttrOrigin    bgpPathAttrEntry.3 INTEGER         read-only       mandatory
  4810. -bgpPathAttrASPath    bgpPathAttrEntry.4 OctetString     read-only       mandatory
  4811. -bgpPathAttrNextHop   bgpPathAttrEntry.5 IpAddress       read-only       mandatory
  4812. -bgpPathAttrInterASMetric bgpPathAttrEntry.6 IpAddress       read-only       mandatory
  4813. +sip                  experimental.16
  4814. +sipPLCP              sip.3
  4815. +smdsApplications     sip.4
  4816. +ipOverSMDS           smdsApplications.1
  4817. +smdsCarrierSelection sip.5
  4818. +sipErrorLog          sip.6
  4819. +
  4820. +sipL3Table           sip.1            Aggregate       not-accessible  mandatory
  4821. +sipL3Entry           sipL3Table.1     Aggregate       not-accessible  mandatory
  4822. +sipL3Index           sipL3Entry.1     INTEGER         read-only       mandatory
  4823. +receivedIndividualDAedSIPL3PDUs sipL3Entry.2     Counter         read-only       mandatory
  4824. +receivedGAedSIPL3PDUs sipL3Entry.3     Counter         read-only       mandatory
  4825. +sentIndividualDAedSIPL3PDUs sipL3Entry.4     Counter         read-only       mandatory
  4826. +sentGAedSIPL3PDUs    sipL3Entry.5     Counter         read-only       mandatory
  4827. +erroredSIPL3PDUs     sipL3Entry.6     Counter         read-only       mandatory
  4828. +unrecognizedDestinationAddresses sipL3Entry.7     Counter         read-only       mandatory
  4829. +unrecognizedGroupAddresses sipL3Entry.8     Counter         read-only       mandatory
  4830. +invalidSMDSAddressTypes sipL3Entry.9     Counter         read-only       mandatory
  4831. +versionSupport       sipL3Entry.10    INTEGER         read-only       mandatory
  4832. +sipL2Table           sip.2            Aggregate       not-accessible  mandatory
  4833. +sipL2Entry           sipL2Table.1     Aggregate       not-accessible  mandatory
  4834. +sipL2Index           sipL2Entry.1     INTEGER         read-only       mandatory
  4835. +receivedSIPL2PDUs    sipL2Entry.2     Counter         read-only       mandatory
  4836. +sentSIPL2PDUs        sipL2Entry.3     Counter         read-only       mandatory
  4837. +hcsOrCRCErrors       sipL2Entry.4     Counter         read-only       mandatory
  4838. +payloadLengthErrors  sipL2Entry.5     Counter         read-only       mandatory
  4839. +sequenceNumberErrors sipL2Entry.6     Counter         read-only       mandatory
  4840. +midCurrentlyActiveErrors sipL2Entry.7     Counter         read-only       mandatory
  4841. +bomOrSSMsMIDErrors   sipL2Entry.8     Counter         read-only       mandatory
  4842. +eomsMIDErrors        sipL2Entry.9     Counter         read-only       mandatory
  4843. +sipDS1PLCPTable      sipPLCP.1        Aggregate       not-accessible  mandatory
  4844. +sipDS1PLCPEntry      sipDS1PLCPTable.1 Aggregate       not-accessible  mandatory
  4845. +sipDS1PLCPIndex      sipDS1PLCPEntry.1 INTEGER         read-only       mandatory
  4846. +ds1PLCPSEFSs         sipDS1PLCPEntry.2 Counter         read-only       mandatory
  4847. +ds1PLCPYellowSignal  sipDS1PLCPEntry.3 INTEGER         read-only       mandatory
  4848. +ds1PLCPRedAlarm      sipDS1PLCPEntry.4 INTEGER         read-only       mandatory
  4849. +ds1PLCPUASs          sipDS1PLCPEntry.5 Counter         read-only       mandatory
  4850. +sipDS3PLCPTable      sipPLCP.2        Aggregate       not-accessible  mandatory
  4851. +sipDS3PLCPEntry      sipDS3PLCPTable.1 Aggregate       not-accessible  mandatory
  4852. +sipDS3PLCPIndex      sipDS3PLCPEntry.1 INTEGER         read-only       mandatory
  4853. +ds3PLCPSEFSs         sipDS3PLCPEntry.2 Counter         read-only       mandatory
  4854. +ds3PLCPYellowSignal  sipDS3PLCPEntry.3 INTEGER         read-only       mandatory
  4855. +ds3PLCPRedAlarm      sipDS3PLCPEntry.4 INTEGER         read-only       mandatory
  4856. +ds3PLCPUASs          sipDS3PLCPEntry.5 Counter         read-only       mandatory
  4857. +ipOverSMDSAddressTable ipOverSMDS.1     Aggregate       not-accessible  mandatory
  4858. +ipOverSMDSAddressEntry ipOverSMDSAddressTable.1 Aggregate       not-accessible  mandatory
  4859. +ipEntryAddressIfIndex ipOverSMDSAddressEntry.1 INTEGER         read-only       mandatory
  4860. +ipEntryAddress       ipOverSMDSAddressEntry.2 IpAddress       read-only       mandatory
  4861. +smdsHA               ipOverSMDSAddressEntry.3 OctetString     read-only       mandatory
  4862. +smdsLISGA            ipOverSMDSAddressEntry.4 OctetString     read-only       mandatory
  4863. +smdsARPReq           ipOverSMDSAddressEntry.5 OctetString     read-only       mandatory
  4864. +sipL3PDUErrorTable   sipErrorLog.1    Aggregate       not-accessible  mandatory
  4865. +sipL3PDUErrorEntry   sipL3PDUErrorTable.1 Aggregate       not-accessible  mandatory
  4866. +sipL3PDUErrorIndex   sipL3PDUErrorEntry.1 INTEGER         read-only       mandatory
  4867. +sipL3PDUErrorType    sipL3PDUErrorEntry.2 INTEGER         read-only       mandatory
  4868. +erroredL3PDUSourceAddress sipL3PDUErrorEntry.3 OctetString     read-only       mandatory
  4869. +erroredL3PDUDestinationAddress sipL3PDUErrorEntry.4 OctetString     read-only       mandatory
  4870. +sipL3PDUErrorTimeStamp sipL3PDUErrorEntry.5 TimeTicks       read-only       mandatory
  4871.  
  4872.  
  4873.  -- automatically generated by mosy 7.0 #62 (dbc), do not edit!
  4874. @@ -1148,6 +1701,33 @@
  4875.  
  4876.  -- object definitions compiled from RFCxxxx-MIB
  4877.  
  4878. +para                 experimental.21
  4879. +
  4880. +paraNumber           para.1           INTEGER         read-only       mandatory
  4881. +paraPortTable        para.2           Aggregate       not-accessible  mandatory
  4882. +paraPortEntry        paraPortTable.1  Aggregate       not-accessible  mandatory
  4883. +paraPortIndex        paraPortEntry.1  INTEGER         read-only       mandatory
  4884. +paraPortType         paraPortEntry.2  INTEGER         read-only       mandatory
  4885. +paraPortInSigNumber  paraPortEntry.3  INTEGER         read-only       mandatory
  4886. +paraPortOutSigNumber paraPortEntry.4  INTEGER         read-only       mandatory
  4887. +paraInSigTable       para.3           Aggregate       not-accessible  mandatory
  4888. +paraInSigEntry       paraInSigTable.1 Aggregate       not-accessible  mandatory
  4889. +paraInSigPortIndex   paraInSigEntry.1 INTEGER         read-only       mandatory
  4890. +paraInSigName        paraInSigEntry.2 INTEGER         read-only       mandatory
  4891. +paraInSigState       paraInSigEntry.3 INTEGER         read-only       mandatory
  4892. +paraInSigChanges     paraInSigEntry.4 Counter         read-only       mandatory
  4893. +paraOutSigTable      para.4           Aggregate       not-accessible  mandatory
  4894. +paraOutSigEntry      paraOutSigTable.1 Aggregate       not-accessible  mandatory
  4895. +paraOutSigPortIndex  paraOutSigEntry.1 INTEGER         read-only       mandatory
  4896. +paraOutSigName       paraOutSigEntry.2 INTEGER         read-only       mandatory
  4897. +paraOutSigState      paraOutSigEntry.3 INTEGER         read-only       mandatory
  4898. +paraOutSigChanges    paraOutSigEntry.4 Counter         read-only       mandatory
  4899. +
  4900. +
  4901. +-- automatically generated by mosy 7.0 #62 (dbc), do not edit!
  4902. +
  4903. +-- object definitions compiled from RFCxxxx-MIB
  4904. +
  4905.  frame-relay          experimental.26
  4906.  
  4907.  frDlcmiTable         frame-relay.1    Aggregate       not-accessible  mandatory
  4908. @@ -1186,226 +1766,6 @@
  4909.  frErrTime            frErrEntry.4     TimeTicks       read-only       mandatory
  4910.  
  4911.  
  4912. --- automatically generated by mosy 7.0 #65 (dbc), do not edit!
  4913. -
  4914. --- object definitions compiled from RFC1271-MIB
  4915. -
  4916. -rmon                 mib-2.16
  4917. -statistics           rmon.1
  4918. -history              rmon.2
  4919. -alarm                rmon.3
  4920. -hosts                rmon.4
  4921. -hostTopN             rmon.5
  4922. -matrix               rmon.6
  4923. -filter               rmon.7
  4924. -capture              rmon.8
  4925. -event                rmon.9
  4926. -
  4927. -etherStatsTable      statistics.1     Aggregate       not-accessible  mandatory
  4928. -etherStatsEntry      etherStatsTable.1 Aggregate       not-accessible  mandatory
  4929. -etherStatsIndex      etherStatsEntry.1 INTEGER         read-only       mandatory
  4930. -etherStatsDataSource etherStatsEntry.2 ObjectID        read-write      mandatory
  4931. -etherStatsDropEvents etherStatsEntry.3 Counter         read-only       mandatory
  4932. -etherStatsOctets     etherStatsEntry.4 Counter         read-only       mandatory
  4933. -etherStatsPkts       etherStatsEntry.5 Counter         read-only       mandatory
  4934. -etherStatsBroadcastPkts etherStatsEntry.6 Counter         read-only       mandatory
  4935. -etherStatsMulticastPkts etherStatsEntry.7 Counter         read-only       mandatory
  4936. -etherStatsCRCAlignErrors etherStatsEntry.8 Counter         read-only       mandatory
  4937. -etherStatsUndersizePkts etherStatsEntry.9 Counter         read-only       mandatory
  4938. -etherStatsOversizePkts etherStatsEntry.10 Counter         read-only       mandatory
  4939. -etherStatsFragments  etherStatsEntry.11 Counter         read-only       mandatory
  4940. -etherStatsJabbers    etherStatsEntry.12 Counter         read-only       mandatory
  4941. -etherStatsCollisions etherStatsEntry.13 Counter         read-only       mandatory
  4942. -etherStatsPkts64Octets etherStatsEntry.14 Counter         read-only       mandatory
  4943. -etherStatsPkts65to127Octets etherStatsEntry.15 Counter         read-only       mandatory
  4944. -etherStatsPkts128to255Octets etherStatsEntry.16 Counter         read-only       mandatory
  4945. -etherStatsPkts256to511Octets etherStatsEntry.17 Counter         read-only       mandatory
  4946. -etherStatsPkts512to1023Octets etherStatsEntry.18 Counter         read-only       mandatory
  4947. -etherStatsPkts1024to1518Octets etherStatsEntry.19 Counter         read-only       mandatory
  4948. -etherStatsOwner      etherStatsEntry.20 DisplayString   read-write      mandatory
  4949. -etherStatsStatus     etherStatsEntry.21 INTEGER         read-write      mandatory
  4950. -historyControlTable  history.1        Aggregate       not-accessible  mandatory
  4951. -historyControlEntry  historyControlTable.1 Aggregate       not-accessible  mandatory
  4952. -historyControlIndex  historyControlEntry.1 INTEGER         read-only       mandatory
  4953. -historyControlDataSource historyControlEntry.2 ObjectID        read-write      mandatory
  4954. -historyControlBucketsRequested historyControlEntry.3 INTEGER         read-write      mandatory
  4955. -historyControlBucketsGranted historyControlEntry.4 INTEGER         read-only       mandatory
  4956. -historyControlInterval historyControlEntry.5 INTEGER         read-write      mandatory
  4957. -historyControlOwner  historyControlEntry.6 DisplayString   read-write      mandatory
  4958. -historyControlStatus historyControlEntry.7 INTEGER         read-write      mandatory
  4959. -etherHistoryTable    history.2        Aggregate       not-accessible  mandatory
  4960. -etherHistoryEntry    etherHistoryTable.1 Aggregate       not-accessible  mandatory
  4961. -etherHistoryIndex    etherHistoryEntry.1 INTEGER         read-only       mandatory
  4962. -etherHistorySampleIndex etherHistoryEntry.2 INTEGER         read-only       mandatory
  4963. -etherHistoryIntervalStart etherHistoryEntry.3 TimeTicks       read-only       mandatory
  4964. -etherHistoryDropEvents etherHistoryEntry.4 Counter         read-only       mandatory
  4965. -etherHistoryOctets   etherHistoryEntry.5 Counter         read-only       mandatory
  4966. -etherHistoryPkts     etherHistoryEntry.6 Counter         read-only       mandatory
  4967. -etherHistoryBroadcastPkts etherHistoryEntry.7 Counter         read-only       mandatory
  4968. -etherHistoryMulticastPkts etherHistoryEntry.8 Counter         read-only       mandatory
  4969. -etherHistoryCRCAlignErrors etherHistoryEntry.9 Counter         read-only       mandatory
  4970. -etherHistoryUndersizePkts etherHistoryEntry.10 Counter         read-only       mandatory
  4971. -etherHistoryOversizePkts etherHistoryEntry.11 Counter         read-only       mandatory
  4972. -etherHistoryFragments etherHistoryEntry.12 Counter         read-only       mandatory
  4973. -etherHistoryJabbers  etherHistoryEntry.13 Counter         read-only       mandatory
  4974. -etherHistoryCollisions etherHistoryEntry.14 Counter         read-only       mandatory
  4975. -etherHistoryUtilization etherHistoryEntry.15 INTEGER         read-only       mandatory
  4976. -alarmTable           alarm.1          Aggregate       not-accessible  mandatory
  4977. -alarmEntry           alarmTable.1     Aggregate       not-accessible  mandatory
  4978. -alarmIndex           alarmEntry.1     INTEGER         read-only       mandatory
  4979. -alarmInterval        alarmEntry.2     INTEGER         read-write      mandatory
  4980. -alarmVariable        alarmEntry.3     ObjectID        read-write      mandatory
  4981. -alarmSampleType      alarmEntry.4     INTEGER         read-write      mandatory
  4982. -alarmValue           alarmEntry.5     INTEGER         read-only       mandatory
  4983. -alarmStartupAlarm    alarmEntry.6     INTEGER         read-write      mandatory
  4984. -alarmRisingThreshold alarmEntry.7     INTEGER         read-write      mandatory
  4985. -alarmFallingThreshold alarmEntry.8     INTEGER         read-write      mandatory
  4986. -alarmRisingEventIndex alarmEntry.9     INTEGER         read-write      mandatory
  4987. -alarmFallingEventIndex alarmEntry.10    INTEGER         read-write      mandatory
  4988. -alarmOwner           alarmEntry.11    DisplayString   read-write      mandatory
  4989. -alarmStatus          alarmEntry.12    INTEGER         read-write      mandatory
  4990. -hostControlTable     hosts.1          Aggregate       not-accessible  mandatory
  4991. -hostControlEntry     hostControlTable.1 Aggregate       not-accessible  mandatory
  4992. -hostControlIndex     hostControlEntry.1 INTEGER         read-only       mandatory
  4993. -hostControlDataSource hostControlEntry.2 ObjectID        read-write      mandatory
  4994. -hostControlTableSize hostControlEntry.3 INTEGER         read-only       mandatory
  4995. -hostControlLastDeleteTime hostControlEntry.4 TimeTicks       read-only       mandatory
  4996. -hostControlOwner     hostControlEntry.5 DisplayString   read-write      mandatory
  4997. -hostControlStatus    hostControlEntry.6 INTEGER         read-write      mandatory
  4998. -hostTable            hosts.2          Aggregate       not-accessible  mandatory
  4999. -hostEntry            hostTable.1      Aggregate       not-accessible  mandatory
  5000. -hostAddress          hostEntry.1      OctetString     read-only       mandatory
  5001. -hostCreationOrder    hostEntry.2      INTEGER         read-only       mandatory
  5002. -hostIndex            hostEntry.3      INTEGER         read-only       mandatory
  5003. -hostInPkts           hostEntry.4      Counter         read-only       mandatory
  5004. -hostOutPkts          hostEntry.5      Counter         read-only       mandatory
  5005. -hostInOctets         hostEntry.6      Counter         read-only       mandatory
  5006. -hostOutOctets        hostEntry.7      Counter         read-only       mandatory
  5007. -hostOutErrors        hostEntry.8      Counter         read-only       mandatory
  5008. -hostOutBroadcastPkts hostEntry.9      Counter         read-only       mandatory
  5009. -hostOutMulticastPkts hostEntry.10     Counter         read-only       mandatory
  5010. -hostTimeTable        hosts.3          Aggregate       not-accessible  mandatory
  5011. -hostTimeEntry        hostTimeTable.1  Aggregate       not-accessible  mandatory
  5012. -hostTimeAddress      hostTimeEntry.1  OctetString     read-only       mandatory
  5013. -hostTimeCreationOrder hostTimeEntry.2  INTEGER         read-only       mandatory
  5014. -hostTimeIndex        hostTimeEntry.3  INTEGER         read-only       mandatory
  5015. -hostTimeInPkts       hostTimeEntry.4  Counter         read-only       mandatory
  5016. -hostTimeOutPkts      hostTimeEntry.5  Counter         read-only       mandatory
  5017. -hostTimeInOctets     hostTimeEntry.6  Counter         read-only       mandatory
  5018. -hostTimeOutOctets    hostTimeEntry.7  Counter         read-only       mandatory
  5019. -hostTimeOutErrors    hostTimeEntry.8  Counter         read-only       mandatory
  5020. -hostTimeOutBroadcastPkts hostTimeEntry.9  Counter         read-only       mandatory
  5021. -hostTimeOutMulticastPkts hostTimeEntry.10 Counter         read-only       mandatory
  5022. -hostTopNControlTable hostTopN.1       Aggregate       not-accessible  mandatory
  5023. -hostTopNControlEntry hostTopNControlTable.1 Aggregate       not-accessible  mandatory
  5024. -hostTopNControlIndex hostTopNControlEntry.1 INTEGER         read-only       mandatory
  5025. -hostTopNHostIndex    hostTopNControlEntry.2 INTEGER         read-write      mandatory
  5026. -hostTopNRateBase     hostTopNControlEntry.3 INTEGER         read-write      mandatory
  5027. -hostTopNTimeRemaining hostTopNControlEntry.4 INTEGER         read-write      mandatory
  5028. -hostTopNDuration     hostTopNControlEntry.5 INTEGER         read-only       mandatory
  5029. -hostTopNRequestedSize hostTopNControlEntry.6 INTEGER         read-write      mandatory
  5030. -hostTopNGrantedSize  hostTopNControlEntry.7 INTEGER         read-only       mandatory
  5031. -hostTopNStartTime    hostTopNControlEntry.8 TimeTicks       read-only       mandatory
  5032. -hostTopNOwner        hostTopNControlEntry.9 DisplayString   read-write      mandatory
  5033. -hostTopNStatus       hostTopNControlEntry.10 INTEGER         read-write      mandatory
  5034. -hostTopNTable        hostTopN.2       Aggregate       not-accessible  mandatory
  5035. -hostTopNEntry        hostTopNTable.1  Aggregate       not-accessible  mandatory
  5036. -hostTopNReport       hostTopNEntry.1  INTEGER         read-only       mandatory
  5037. -hostTopNIndex        hostTopNEntry.2  INTEGER         read-only       mandatory
  5038. -hostTopNAddress      hostTopNEntry.3  OctetString     read-only       mandatory
  5039. -hostTopNRate         hostTopNEntry.4  INTEGER         read-only       mandatory
  5040. -matrixControlTable   matrix.1         Aggregate       not-accessible  mandatory
  5041. -matrixControlEntry   matrixControlTable.1 Aggregate       not-accessible  mandatory
  5042. -matrixControlIndex   matrixControlEntry.1 INTEGER         read-only       mandatory
  5043. -matrixControlDataSource matrixControlEntry.2 ObjectID        read-write      mandatory
  5044. -matrixControlTableSize matrixControlEntry.3 INTEGER         read-only       mandatory
  5045. -matrixControlLastDeleteTime matrixControlEntry.4 TimeTicks       read-only       mandatory
  5046. -matrixControlOwner   matrixControlEntry.5 DisplayString   read-write      mandatory
  5047. -matrixControlStatus  matrixControlEntry.6 INTEGER         read-write      mandatory
  5048. -matrixSDTable        matrix.2         Aggregate       not-accessible  mandatory
  5049. -matrixSDEntry        matrixSDTable.1  Aggregate       not-accessible  mandatory
  5050. -matrixSDSourceAddress matrixSDEntry.1  OctetString     read-only       mandatory
  5051. -matrixSDDestAddress  matrixSDEntry.2  OctetString     read-only       mandatory
  5052. -matrixSDIndex        matrixSDEntry.3  INTEGER         read-only       mandatory
  5053. -matrixSDPkts         matrixSDEntry.4  Counter         read-only       mandatory
  5054. -matrixSDOctets       matrixSDEntry.5  Counter         read-only       mandatory
  5055. -matrixSDErrors       matrixSDEntry.6  Counter         read-only       mandatory
  5056. -matrixDSTable        matrix.3         Aggregate       not-accessible  mandatory
  5057. -matrixDSEntry        matrixDSTable.1  Aggregate       not-accessible  mandatory
  5058. -matrixDSSourceAddress matrixDSEntry.1  OctetString     read-only       mandatory
  5059. -matrixDSDestAddress  matrixDSEntry.2  OctetString     read-only       mandatory
  5060. -matrixDSIndex        matrixDSEntry.3  INTEGER         read-only       mandatory
  5061. -matrixDSPkts         matrixDSEntry.4  Counter         read-only       mandatory
  5062. -matrixDSOctets       matrixDSEntry.5  Counter         read-only       mandatory
  5063. -matrixDSErrors       matrixDSEntry.6  Counter         read-only       mandatory
  5064. -filterTable          filter.1         Aggregate       not-accessible  mandatory
  5065. -filterEntry          filterTable.1    Aggregate       not-accessible  mandatory
  5066. -filterIndex          filterEntry.1    INTEGER         read-only       mandatory
  5067. -filterChannelIndex   filterEntry.2    INTEGER         read-write      mandatory
  5068. -filterPktDataOffset  filterEntry.3    INTEGER         read-write      mandatory
  5069. -filterPktData        filterEntry.4    OctetString     read-write      mandatory
  5070. -filterPktDataMask    filterEntry.5    OctetString     read-write      mandatory
  5071. -filterPktDataNotMask filterEntry.6    OctetString     read-write      mandatory
  5072. -filterPktStatus      filterEntry.7    INTEGER         read-write      mandatory
  5073. -filterPktStatusMask  filterEntry.8    INTEGER         read-write      mandatory
  5074. -filterPktStatusNotMask filterEntry.9    INTEGER         read-write      mandatory
  5075. -filterOwner          filterEntry.10   DisplayString   read-write      mandatory
  5076. -filterStatus         filterEntry.11   INTEGER         read-write      mandatory
  5077. -channelTable         filter.2         Aggregate       not-accessible  mandatory
  5078. -channelEntry         channelTable.1   Aggregate       not-accessible  mandatory
  5079. -channelIndex         channelEntry.1   INTEGER         read-only       mandatory
  5080. -channelIfIndex       channelEntry.2   INTEGER         read-write      mandatory
  5081. -channelAcceptType    channelEntry.3   INTEGER         read-write      mandatory
  5082. -channelDataControl   channelEntry.4   INTEGER         read-write      mandatory
  5083. -channelTurnOnEventIndex channelEntry.5   INTEGER         read-write      mandatory
  5084. -channelTurnOffEventIndex channelEntry.6   INTEGER         read-write      mandatory
  5085. -channelEventIndex    channelEntry.7   INTEGER         read-write      mandatory
  5086. -channelEventStatus   channelEntry.8   INTEGER         read-write      mandatory
  5087. -channelMatches       channelEntry.9   Counter         read-only       mandatory
  5088. -channelDescription   channelEntry.10  DisplayString   read-write      mandatory
  5089. -channelOwner         channelEntry.11  DisplayString   read-write      mandatory
  5090. -channelStatus        channelEntry.12  INTEGER         read-write      mandatory
  5091. -bufferControlTable   capture.1        Aggregate       not-accessible  mandatory
  5092. -bufferControlEntry   bufferControlTable.1 Aggregate       not-accessible  mandatory
  5093. -bufferControlIndex   bufferControlEntry.1 INTEGER         read-only       mandatory
  5094. -bufferControlChannelIndex bufferControlEntry.2 INTEGER         read-write      mandatory
  5095. -bufferControlFullStatus bufferControlEntry.3 INTEGER         read-only       mandatory
  5096. -bufferControlFullAction bufferControlEntry.4 INTEGER         read-write      mandatory
  5097. -bufferControlCaptureSliceSize bufferControlEntry.5 INTEGER         read-write      mandatory
  5098. -bufferControlDownloadSliceSize bufferControlEntry.6 INTEGER         read-write      mandatory
  5099. -bufferControlDownloadOffset bufferControlEntry.7 INTEGER         read-write      mandatory
  5100. -bufferControlMaxOctetsRequested bufferControlEntry.8 INTEGER         read-write      mandatory
  5101. -bufferControlMaxOctetsGranted bufferControlEntry.9 INTEGER         read-only       mandatory
  5102. -bufferControlCapturedPackets bufferControlEntry.10 INTEGER         read-only       mandatory
  5103. -bufferControlTurnOnTime bufferControlEntry.11 TimeTicks       read-only       mandatory
  5104. -bufferControlOwner   bufferControlEntry.12 DisplayString   read-write      mandatory
  5105. -bufferControlStatus  bufferControlEntry.13 INTEGER         read-write      mandatory
  5106. -captureBufferTable   capture.2        Aggregate       not-accessible  mandatory
  5107. -captureBufferEntry   captureBufferTable.1 Aggregate       not-accessible  mandatory
  5108. -captureBufferControlIndex captureBufferEntry.1 INTEGER         read-only       mandatory
  5109. -captureBufferIndex   captureBufferEntry.2 INTEGER         read-only       mandatory
  5110. -captureBufferPacketID captureBufferEntry.3 INTEGER         read-only       mandatory
  5111. -captureBufferPacketData captureBufferEntry.4 OctetString     read-only       mandatory
  5112. -captureBufferPacketLength captureBufferEntry.5 INTEGER         read-only       mandatory
  5113. -captureBufferPacketTime captureBufferEntry.6 INTEGER         read-only       mandatory
  5114. -captureBufferPacketStatus captureBufferEntry.7 INTEGER         read-only       mandatory
  5115. -eventTable           event.1          Aggregate       not-accessible  mandatory
  5116. -eventEntry           eventTable.1     Aggregate       not-accessible  mandatory
  5117. -eventIndex           eventEntry.1     INTEGER         read-only       mandatory
  5118. -eventDescription     eventEntry.2     DisplayString   read-write      mandatory
  5119. -eventType            eventEntry.3     INTEGER         read-write      mandatory
  5120. -eventCommunity       eventEntry.4     OctetString     read-write      mandatory
  5121. -eventLastTimeSent    eventEntry.5     TimeTicks       read-only       mandatory
  5122. -eventOwner           eventEntry.6     DisplayString   read-write      mandatory
  5123. -eventStatus          eventEntry.7     INTEGER         read-write      mandatory
  5124. -logTable             event.2          Aggregate       not-accessible  mandatory
  5125. -logEntry             logTable.1       Aggregate       not-accessible  mandatory
  5126. -logEventIndex        logEntry.1       INTEGER         read-only       mandatory
  5127. -logIndex             logEntry.2       INTEGER         read-only       mandatory
  5128. -logTime              logEntry.3       TimeTicks       read-only       mandatory
  5129. -logDescription       logEntry.4       DisplayString   read-only       mandatory
  5130. -
  5131. -
  5132.  -- automatically generated by mosy 7.0 #62 (dbc), do not edit!
  5133.  
  5134.  -- object definitions compiled from SNMP-REPEATER-MIB
  5135. @@ -1638,30 +1998,5 @@
  5136.  exprExpr             exprEntry.3      OctetString     read-write      mandatory
  5137.  exprStatus           exprEntry.4      INTEGER         read-only       mandatory
  5138.  exprHints            exprEntry.5      DisplayString   read-only       mandatory
  5139. -
  5140. -
  5141. --- automatically generated by mosy 7.0 #69 (obel2), do not edit!
  5142. -
  5143. --- object definitions compiled from ApplicationMib { iso 3 6 1 4 1 453 1 1  }
  5144. -
  5145. -isode-consortium     enterprises.453
  5146. -application-mib      isode-consortium.2
  5147. -application          application-mib.1
  5148. -mta                  application-mib.2
  5149. -dsa                  application-mib.3
  5150. -
  5151. -distinguishedName    application.1    DisplayString   read-write      mandatory
  5152. -applicationStatus    application.2    INTEGER         read-only       mandatory
  5153. -applicationUptime    application.3    TimeTicks       read-only       mandatory
  5154. -inboundAssociations  application.4    Counter         read-only       mandatory
  5155. -outboundAssociations application.5    Counter         read-only       mandatory
  5156. -numberMessages       mta.1            Counter         read-only       mandatory
  5157. -volumeMessages       mta.2            Counter         read-only       mandatory
  5158. -submittedMessages    mta.3            Counter         read-only       mandatory
  5159. -deliveredMessages    mta.4            Counter         read-only       mandatory
  5160. -operations           dsa.1            Counter         read-only       mandatory
  5161. -masterEntries        dsa.2            Counter         read-only       mandatory
  5162. -copyEntries          dsa.3            Counter         read-only       mandatory
  5163. -cacheEntries         dsa.4            Counter         read-only       mandatory
  5164.  
  5165.  
  5166. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/snmp/snmpd.c isode-8.0/snmp/snmpd.c
  5167. --- old/isode-8.0/snmp/snmpd.c    Tue Jun 16 13:38:52 1992
  5168. +++ isode-8.0/snmp/snmpd.c    Mon Aug 23 16:00:34 1993
  5169. @@ -319,7 +319,9 @@
  5170.                  failed++;
  5171.                  continue;
  5172.              }
  5173. +#ifdef FIOCLEX
  5174.              (void) ioctl (udp, FIOCLEX, NULLCP);
  5175. +#endif
  5176.              if (udp >= nfds)
  5177.                  nfds = udp + 1;
  5178.              FD_SET (udp, &ifds);
  5179. @@ -361,7 +363,9 @@
  5180.                  failed++;
  5181.                  continue;
  5182.              }
  5183. +#ifdef FIOCLEX
  5184.              (void) ioctl (clts, FIOCLEX, NULLCP);
  5185. +#endif
  5186.              if (clts >= nfds)
  5187.                  nfds = clts + 1;
  5188.              FD_SET (clts, &ifds);
  5189. @@ -425,7 +429,9 @@
  5190.      if (smux_enabled) {
  5191.          if ((smux = start_tcp_server (lsock, SOMAXCONN, 0, 0)) == NOTOK)
  5192.          adios ("failed", "start_tcp_server for SMUX");
  5193. +#ifdef FIOCLEX
  5194.          (void) ioctl (smux, FIOCLEX, NULLCP);
  5195. +#endif
  5196.          if (smux >= nfds)
  5197.          nfds = smux + 1;
  5198.          FD_SET (smux, &ifds);
  5199. @@ -475,7 +481,9 @@
  5200.      if (smux != NOTOK
  5201.          && FD_ISSET (smux, &rfds)
  5202.              && (fd = start_smux ()) != NOTOK) {
  5203. +#ifdef FIOCLEX
  5204.          (void) ioctl (fd, FIOCLEX, NULLCP);
  5205. +#endif
  5206.          if (fd >= nfds)
  5207.          nfds = fd + 1;
  5208.          FD_SET (fd, &ifds);
  5209. @@ -494,7 +502,9 @@
  5210.  
  5211.  #ifdef    COTS
  5212.      if (vecp > 0 && (fd = start_tsap (vecp, vec)) != NOTOK) {
  5213. +#ifdef FIOCLEX
  5214.          (void) ioctl (fd, FIOCLEX, NULLCP);
  5215. +#endif
  5216.          if (fd >= nfds)
  5217.          nfds = fd + 1;
  5218.          FD_SET (fd, &ifds);
  5219. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/ssap/Makefile isode-8.0/ssap/Makefile
  5220. --- old/isode-8.0/ssap/Makefile    Tue Jun 16 13:39:41 1992
  5221. +++ isode-8.0/ssap/Makefile    Tue Aug 24 11:53:19 1993
  5222. @@ -66,6 +66,18 @@
  5223.  
  5224.  inst-libssap:    $(LIBDIR)libssap.a $(LINTDIR)llib-lssap
  5225.  
  5226. +zap-ssap:
  5227. +        -rm -f $(OFILES) libssap.a ssapvrsn.o
  5228. +
  5229. +linux-lib:    zap-ssap ../jump/libssap.a
  5230. +
  5231. +../jump/libssap.a:    libssap.a
  5232. +        -rm -f $@
  5233. +        cp libssap.a $@
  5234. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  5235. +        -@ls -gls $@
  5236. +        -@echo ""
  5237. +
  5238.  $(LIBDIR)libssap.a:    libssap.a
  5239.          -rm -f $@
  5240.          cp libssap.a $@
  5241. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/support/Makefile isode-8.0/support/Makefile
  5242. --- old/isode-8.0/support/Makefile    Tue Jun 16 13:40:09 1992
  5243. +++ isode-8.0/support/Makefile    Tue Aug 31 10:54:11 1993
  5244. @@ -83,6 +83,7 @@
  5245.          -@echo ""
  5246.  
  5247.  tsapd:        xtsapd
  5248. +        :
  5249.  
  5250.  xtsapd:        tsapd.o $(TOPDIR)libisode.a
  5251.          $(LDCC) $(LDFLAGS) -o $@ tsapd.o $(LIBISODE) $(LSOCKET)
  5252. @@ -103,6 +104,7 @@
  5253.          -@echo ""
  5254.  
  5255.  iaed:        xiaed
  5256. +        :
  5257.  
  5258.  xiaed:        iaed.o $(TOPDIR)libdsap.a $(TOPDIR)libisode.a
  5259.          $(LDCC) $(LDFLAGS) -o $@ iaed.o \
  5260. @@ -140,6 +142,7 @@
  5261.          -@echo ""
  5262.  
  5263.  isore:        xisore
  5264. +        :
  5265.  
  5266.  xisore:        isore.o
  5267.          $(LDCC) $(LDFLAGS) -o $@ isore.o $(TOPDIR)libcompat.a \
  5268. @@ -173,6 +176,7 @@
  5269.          -@echo ""
  5270.  
  5271.  isod:        xisod
  5272. +        :
  5273.  
  5274.  xisod:        isod.o $(TOPDIR)libisode.a
  5275.          $(LDCC) $(LDFLAGS) -o $@ isod.o $(LIBISODE) $(LSOCKET)
  5276. @@ -197,6 +201,7 @@
  5277.          -@echo ""
  5278.  
  5279.  isoc:        xisoc
  5280. +        :
  5281.  
  5282.  xisoc:        isoc.o $(TOPDIR)libisode.a
  5283.          $(LDCC) $(LDFLAGS) -o $@ isoc.o $(LIBISODE) $(LSOCKET)
  5284. @@ -213,6 +218,15 @@
  5285.  
  5286.  inst-libisode:    $(LIBDIR)libisode.a $(LINTDIR)llib-lisode
  5287.  
  5288. +zap-vrsn:
  5289. +        -rm -f isodevrsn.o
  5290. +
  5291. +linux-lib:    zap-vrsn ../jump/libisode.a
  5292. +
  5293. +../jump/libisode.a:    isodevrsn.o
  5294. +        ar r $@ isodevrsn.o
  5295. +        -@echo ""
  5296. +
  5297.  $(LIBDIR)libisode.a:    libisode.a
  5298.          @for i in libisode.* ;\
  5299.          do \
  5300. @@ -372,8 +386,8 @@
  5301.  # lppd
  5302.  ################################################################
  5303.  
  5304. -LPP-LIBES=    $(TOPDIR)libisode-lpp.a
  5305. -LPP-LLIBS=    $(TOPDIR)llib-lisode-lpp
  5306. +LPP-LIBES=    $(TOPDIR)libpsap2-lpp.a $(TOPDIR)libisode.a
  5307. +LPP-LLIBS=    $(TOPDIR)llib-psap2-lpp $(TOPDIR)llib-lisode
  5308.  
  5309.  inst-lppd:    $(SBINDIR)lppd
  5310.  
  5311. @@ -385,6 +399,7 @@
  5312.          -@echo ""
  5313.  
  5314.  lppd:        xlppd
  5315. +        :
  5316.  
  5317.  xlppd:        lppd.o $(LPP-LIBES)
  5318.          $(LDCC) $(LDFLAGS) -o $@ lppd.o $(LPP-LIBES) $(LSOCKET)
  5319. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/support/isore.c isode-8.0/support/isore.c
  5320. --- old/isode-8.0/support/isore.c    Tue Jun 16 13:40:16 1992
  5321. +++ isode-8.0/support/isore.c    Thu Aug 19 16:26:48 1993
  5322. @@ -30,6 +30,10 @@
  5323.  #include "general.h"
  5324.  #include "manifest.h"
  5325.  
  5326. +#ifndef SIGEMT
  5327. +#define SIGEMT    SIGUSR1
  5328. +#endif
  5329. +
  5330.  /*     MAIN */
  5331.  
  5332.  static SFD    EMTser ();
  5333. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/support/tsapd.c isode-8.0/support/tsapd.c
  5334. --- old/isode-8.0/support/tsapd.c    Thu Dec  9 17:14:08 1993
  5335. +++ isode-8.0/support/tsapd.c    Tue Jun 16 13:40:21 1992
  5336. @@ -332,18 +332,9 @@
  5337.          == NULL) {
  5338.  #else
  5339.      for (is = iae; is < iz; is++)
  5340. -    
  5341. -#if 0
  5342. -    /* THIS doesn't work - JPO */
  5343.      if (tsap_addr_cmp (&is -> is_addr, &ts -> ts_called) == OK)
  5344.          break;
  5345. -#else
  5346. -        if (is -> is_addr.ta_selectlen == ts -> ts_called.ta_selectlen
  5347. -        && bcmp (is -> is_addr.ta_selector,
  5348. -             ts -> ts_called.ta_selector,
  5349. -             is -> is_addr.ta_selectlen) == 0)
  5350. -        break;
  5351. -#endif
  5352. +
  5353.      if (is >= iz) {
  5354.  #endif
  5355.          (void) sprintf (buffer, "OSI service tsap/%s not found",
  5356. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/tsap/Makefile isode-8.0/tsap/Makefile
  5357. --- old/isode-8.0/tsap/Makefile    Tue Jun 16 13:40:41 1992
  5358. +++ isode-8.0/tsap/Makefile    Tue Aug 24 11:53:31 1993
  5359. @@ -63,6 +63,18 @@
  5360.  
  5361.  inst-libtsap:    $(LIBDIR)libtsap.a $(LINTDIR)llib-ltsap
  5362.  
  5363. +zap-tsap:
  5364. +        -rm -f $(OFILES) libtsap.a tsapvrsn.o
  5365. +
  5366. +linux-lib:    zap-tsap ../jump/libtsap.a
  5367. +
  5368. +../jump/libtsap.a:    libtsap.a
  5369. +        -rm -f $@
  5370. +        cp libtsap.a $@
  5371. +        @$(UTILDIR)make-lib.sh $(SYSTEM) $@ -ranlib
  5372. +        -@ls -gls $@
  5373. +        -@echo ""
  5374. +
  5375.  $(LIBDIR)libtsap.a:    libtsap.a
  5376.          -rm -f $@
  5377.          cp libtsap.a $@
  5378. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/tsap/ts2tcp.c isode-8.0/tsap/ts2tcp.c
  5379. --- old/isode-8.0/tsap/ts2tcp.c    Tue Jun 16 13:40:45 1992
  5380. +++ isode-8.0/tsap/ts2tcp.c    Tue Sep 14 10:48:33 1993
  5381. @@ -37,7 +37,7 @@
  5382.  #ifdef    BSD42
  5383.  #include <sys/ioctl.h>
  5384.  #endif
  5385. -#ifdef    SYS5
  5386. +#if defined(SYS5) || defined(__linux__)
  5387.  #include <fcntl.h>
  5388.  #endif
  5389.  
  5390. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/tsap/tsaprovider.c isode-8.0/tsap/tsaprovider.c
  5391. --- old/isode-8.0/tsap/tsaprovider.c    Tue Jun 16 13:40:51 1992
  5392. +++ isode-8.0/tsap/tsaprovider.c    Fri Sep 10 16:06:28 1993
  5393. @@ -36,6 +36,9 @@
  5394.  #include "sys.file.h"
  5395.  #include <sys/stat.h>
  5396.  
  5397. +#ifdef __linux__
  5398. +#include <linux/sockios.h>
  5399. +#endif
  5400.  
  5401.  #define    selmask(fd,m,n) \
  5402.  { \
  5403. @@ -421,7 +424,7 @@
  5404.      register struct TSAPdisconnect *td = &tds;
  5405.  
  5406.  #ifndef    BSDSIGS
  5407. -    (void) signal (SIGEMT, DATAser);
  5408. +    (void) signal (_SIGIO, DATAser);
  5409.  
  5410.      smask = sigioblock ();
  5411.  #endif
  5412. @@ -472,7 +475,7 @@
  5413.      }
  5414.  
  5415.  #ifndef    SIGPOLL
  5416. -    (void) kill (TPid, SIGEMT);
  5417. +    (void) kill (TPid, _SIGIO);
  5418.  #endif
  5419.  
  5420.  #ifndef    BSDSIGS
  5421. @@ -514,10 +517,10 @@
  5422.      return tsaplose (td, DR_CONGEST, NULLCP, "you lose");
  5423.      if (!inited) {
  5424.  #ifndef    BSDSIGS
  5425. -    int    smask = sigsetmask (sigblock (0) & ~sigmask (SIGEMT));
  5426. +    int    smask = sigsetmask (sigblock (0) & ~sigmask (_SIGIO));
  5427.  #endif
  5428.  
  5429. -    (void) signal (SIGEMT, DATAser);
  5430. +    (void) signal (_SIGIO, DATAser);
  5431.  #ifndef    BSDSIGS
  5432.      (void) sigiomask (smask);
  5433.  #endif
  5434. @@ -542,7 +545,7 @@
  5435.          continue;
  5436.  
  5437.          case OK: 
  5438. -        (void) signal (SIGEMT, SIG_DFL);
  5439. +        (void) signal (_SIGIO, SIG_DFL);
  5440.          (void) execv (*is -> is_vec, is -> is_vec);
  5441.          _exit (1);
  5442.  
  5443. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/util/version.sh isode-8.0/util/version.sh
  5444. --- old/isode-8.0/util/version.sh    Tue Jun 16 11:12:10 1992
  5445. +++ isode-8.0/util/version.sh    Thu Aug 19 15:39:29 1993
  5446. @@ -1,7 +1,7 @@
  5447.  : run this script through /bin/sh
  5448.  
  5449.  : this hacks past a bug in make...
  5450. -exec 3<&- 4<&- 5<&- 6<&- 7<&-
  5451. +#exec 3<&- 4<&- 5<&- 6<&- 7<&-
  5452.  
  5453.  OFS="$IFS" IFS=:
  5454.  
  5455. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/vt/Makefile isode-8.0/vt/Makefile
  5456. --- old/isode-8.0/vt/Makefile    Tue Jun 16 13:41:09 1992
  5457. +++ isode-8.0/vt/Makefile    Mon Aug 23 15:16:14 1993
  5458. @@ -74,6 +74,7 @@
  5459.          -@echo ""
  5460.  
  5461.  vtd:        xvtd
  5462. +        :
  5463.  
  5464.  xvtd:        vtd.o $(OFILES) libvt.a $(LIBES)
  5465.          $(LDCC) $(LDFLAGS) -o $@ vtd.o $(OFILES) libvt.a \
  5466. @@ -108,6 +109,7 @@
  5467.          -@echo ""
  5468.  
  5469.  vt:        xvt
  5470. +        :
  5471.  
  5472.  xvt:        vt.o $(OFILES) libvt.a $(LIBES)
  5473.          $(LDCC) $(LDFLAGS) -o $@ vt.o $(OFILES) libvt.a \
  5474. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/vt/map.c isode-8.0/vt/map.c
  5475. --- old/isode-8.0/vt/map.c    Tue Jun 16 13:41:11 1992
  5476. +++ isode-8.0/vt/map.c    Mon Aug 23 14:38:05 1993
  5477. @@ -37,7 +37,12 @@
  5478.  #include <sys/ioctl.h>
  5479.  #endif
  5480.  #ifdef TERMIOS
  5481. +#ifdef __linux__
  5482. +#include <termios.h>
  5483. +#include <unistd.h>
  5484. +#else
  5485.  #include <sys/termios.h>
  5486. +#endif
  5487.  #endif
  5488.  #include <fcntl.h>
  5489.  
  5490. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/vt/vt.c isode-8.0/vt/vt.c
  5491. --- old/isode-8.0/vt/vt.c    Tue Jun 16 13:41:20 1992
  5492. +++ isode-8.0/vt/vt.c    Mon Aug 23 14:32:47 1993
  5493. @@ -34,7 +34,11 @@
  5494.  #include <sys/ioctl.h>
  5495.  #endif
  5496.  #ifdef TERMIOS
  5497. +#ifdef __linux__
  5498. +#include <termios.h>
  5499. +#else
  5500.  #include <sys/termios.h>
  5501. +#endif
  5502.  #endif
  5503.  #include <ctype.h>
  5504.  #include <setjmp.h>
  5505. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/vt/vtd.c isode-8.0/vt/vtd.c
  5506. --- old/isode-8.0/vt/vtd.c    Tue Jun 16 13:41:21 1992
  5507. +++ isode-8.0/vt/vtd.c    Fri Aug 27 09:29:56 1993
  5508. @@ -36,7 +36,12 @@
  5509.  #include <sys/ioctl.h>
  5510.  #endif
  5511.  #ifdef    TERMIOS
  5512. +#ifdef __linux__
  5513. +#include <termios.h>
  5514. +#include <unistd.h>
  5515. +#else
  5516.  #include <sys/termios.h>
  5517. +#endif
  5518.  #ifdef BSD44
  5519.  #include <sys/ttydefaults.h>
  5520.  #include <sys/stat.h>
  5521. @@ -61,13 +66,17 @@
  5522.  #include <varargs.h>
  5523.  
  5524.  #define    BELL    '\07'
  5525. -#ifndef    SUNOS4
  5526. -#define BANNER    "\r\n\r\n4.2 BSD UNIX (%s)\r\n\r\n\r%s"
  5527. -#else
  5528. +#ifdef    SUNOS4
  5529.  #define BANNER    "\r\n\r\nSunOS UNIX (%s)\r\n\r\n\r%s"
  5530. +#else
  5531. +#ifdef __linux__
  5532. +#define BANNER    "\r\n\r\nLinux (%s)\r\n\r\n\r%s"
  5533. +#else
  5534. +#define BANNER    "\r\n\r\n4.2 BSD UNIX (%s)\r\n\r\n\r%s"
  5535.  #endif
  5536. +#endif
  5537.  
  5538. -#if !defined(SYS5) && !defined(BSD44) && !defined(_AIX)
  5539. +#if !defined(SYS5) && !defined(BSD44) && !defined(_AIX) && !defined(__linux__)
  5540.  void    vhangup();
  5541.  #endif
  5542.  
  5543. @@ -149,6 +158,9 @@
  5544.  #ifndef TERMIOS
  5545.      struct sgttyb b;
  5546.  #endif
  5547. +#ifdef __linux__
  5548. +    struct termios b;
  5549. +#endif
  5550.  
  5551.      if (myname = rindex (*argv, '/'))
  5552.      myname++;
  5553. @@ -199,7 +211,7 @@
  5554.      }
  5555.      else
  5556.          exit(1);
  5557. -#ifdef TERMIOS
  5558. +#if defined(TERMIOS) && !defined(__linux__)
  5559.      na_image = 0;
  5560.      nego_state = 0;            /*Start off in Local echo*/
  5561.      i = forkpty(&p, line, NULL, NULL);
  5562. @@ -231,6 +243,9 @@
  5563.  gotpty:
  5564.  
  5565.      cp[strlen("/dev/")] = 't';
  5566. +#ifdef __linux__
  5567. +    setsid();
  5568. +#else
  5569.      t = open("/dev/tty", 2);
  5570.      if (t >= 0) {
  5571.          if (ioctl(t, TIOCNOTTY, 0) == -1) {
  5572. @@ -238,9 +253,24 @@
  5573.          }
  5574.          (void)close(t);
  5575.      }
  5576. +#endif
  5577.      t = open(cp, 2);
  5578.      if (t < 0)
  5579.          fatalperror(f, cp, errno);
  5580. +#ifdef __linux__
  5581. +    if (tcgetattr(t, (char*)&b) == -1) {
  5582. +        perror("tcgetattr");
  5583. +        adios(NULLCP, "tcgetattr failed");
  5584. +    }
  5585. +    if (telnet_profile)
  5586. +        b.c_lflag &= ~ECHO;
  5587. +    else
  5588. +        b.c_lflag |= ECHO;    /*Remote echo for Default*/
  5589. +    if (tcsetattr(t, TCSAFLUSH, (char*)&b) == -1) {
  5590. +        perror("tcsetattr");
  5591. +        adios(NULLCP, "tcsetattr failed");
  5592. +    }
  5593. +#else
  5594.      if (ioctl(t, TIOCGETP, (char*)&b) == -1) {
  5595.          perror("ioctl (TIOCGETP)");
  5596.          adios(NULLCP, "ioctl failed (TIOCGETP)");
  5597. @@ -262,6 +292,7 @@
  5598.          perror("ioctl (TIOCSETP)");
  5599.          adios(NULLCP, "ioctl failed (TIOCSETP)");
  5600.      }
  5601. +#endif
  5602.      na_image = 0;
  5603.      nego_state = 0;            /*Start off in Local echo*/
  5604.  
  5605. diff --new-file --recursive --unified --exclude=version.local --exclude=update.* old/isode-8.0/vt/vtd.c isode-8.0/vt/vtd.c
  5606. --- old/isode-8.0/quipu/sys_init.c    Tue Jun 16 13:41:21 1992
  5607. +++ isode-8.0/quipu/sys_init.c    Fri Aug 27 09:29:56 1993
  5608. @@ -107,7 +107,7 @@
  5609.          && ((statbuf.st_mode & S_IFMT) == S_IFDIR)) {
  5610.              /* tmpdir exists - clean it */
  5611.          struct dirent **namelist;
  5612. -        (void) _scandir(edbtmp_buf, &namelist, rmFiles, NULLIFP);
  5613. +        (void) scandir(edbtmp_buf, &namelist, rmFiles, NULLIFP);
  5614.          if (namelist)
  5615.              free((char *) namelist);
  5616.  
  5617. That's it. End of patch. If you've actually *read* all that - congratulations!
  5618.